-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
87 lines (87 loc) · 4.1 KB
/
index.html
File metadata and controls
87 lines (87 loc) · 4.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Sharelock- Your rental keyless accessible!</title>
<meta name="description" content="ShareLock coming soon">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="shortcut icon" href="shareLockFavicon.ico" />
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Lato:400,700" rel="stylesheet">
<link rel="stylesheet" href="./styles.css" type="text/css">
</head>
<body>
<video autoplay muted loop id="myVideo">
<source src="./assets/videos/video_bg.mp4" type="video/mp4">
</video>
<div class="main-container">
<header>
<div class="lang-switcher">
<a href="#" class="active" onclick="toggleLanguage(event, 'en')">en</a><a href="#" onclick="toggleLanguage(event, 'pl')">pl</a>
</div>
<img src="./assets/images/sharelock-logo.svg" alt="ShareLock" class="logo-image">
<div class="soon-text">coming soon</div>
<div class="share-lock-title">
<img src="./assets/images/shareLock.svg" alt="ShareLock">
</div>
<div class="bottom-header">
<div class="learn-more">
<a href="#">
<span class="lang-en">Learn more about it,<br> how to do Your rental keyless accessible!</span>
<span class="lang-pl">Dowiedz się więcej,<br> jak zapewnić bezkluczykowy dostęp do Twojego obiektu na wynajem!</span>
</a>
</div>
<div class="social-networks">
<a href="https://www.facebook.com/autorun.nearshore/" target="_blank">
<img src="./assets/images/fb.png" alt="FB">
</a>
<a href=" https://www.linkedin.com/company/autorun-sp.-z-o.o./" target="_blank">
<img src="./assets/images/linkedin.png" alt="LinkedIn">
</a>
</div>
<div class="to-subscribe">
<a href="#subscribe-input">
<img src="./assets/images/icn_arrow.svg" alt="⌄">
</a>
</div>
</div>
</header>
<div class="subscription-container">
<div class="subscription-box">
<h1 class="slogan">
<span class="lang-en">Do you want us to let you know when the Share<span class="blue-text">Lock</span> will be ready?</span>
<span class="lang-pl">Chcesz poznać szczegóły dotyczące aplikacji Share<span class="blue-text">Lock</span>?</span>
</h1>
<h2 class="sub-slogan">
<span class="lang-en">Please leave us your email address and we will inform you when ShareLock will be ready for you to test it. We promise not to spam you ;) * wing wing*</span>
<span class="lang-pl">Powierz nam adres Twojego emaila, a my poinformujemy Cię, kiedy SHARELOCK będzie gotowy do testów.
Obiecujemy nie spamować Twojej skrzynki * wing</span>
</h2>
<form method="post" name="subscribe-email" id="subscribe-form">
<div class="success-text">
<span class="lang-en">We sent email to Your address. Please check spam folder, just in case :)</span>
<span class="lang-pl">Email z potwierdzeniem został wysłany na podany przez Ciebie adres. Jeśli nie znajdziesz go w głównym katalogu, sprawdź proszę katalog spam :)</span>
</div>
<div class="error-text">
<span class="lang-en">Error happened :( Please reload page and try one more time</span>
<span class="lang-pl">Coś poszło nie tak :( Odśwież proszę stronę i spróbuj ponownie!</span>
</div>
<label>
<input type="email" id="subscribe-input" name="email" class="email-input" placeholder="Email address" required>
</label>
<button type="submit" class="action-button">
<span class="lang-en">Save</span>
<span class="lang-pl">Zapisz się</span>
</button>
</form>
</div>
</div>
<footer>
<div class="footer-container">
Copyright 2019 <a href="https://autorun.solutions" target="_blank"><img src="./assets/images/logo_autorun.png" alt="AutoRun Solutions"></a> ©. All rights Reserved
</div>
</footer>
</div>
<script src="./main.js" type="application/javascript"></script>
</body>
</html>