-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
103 lines (101 loc) · 3.84 KB
/
index.html
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./src/assets/images/favicon-32x32.png"
/>
<title>Newsletter sign-up form</title>
<link rel="stylesheet" href="./style.css" />
<script defer type="module" src="./src/assets/js/App.js"></script>
</head>
<body>
<!-- ! Sign-up form start -->
<!-- <div class="Signup-wrapper View-wrapper mobile2:max-w-max mobile2:w-11/12">
<section
class="image-wrapper w-full mobile2:hidden tablet:flex flex-col order-2 tablet:rounded-2xl overflow-hidden"
>
<img
src="./src/assets/images/illustration-sign-up-mobile.svg"
alt="mobile sign up illustration"
class="signup-image-1 mobile2:hidden"
/>
<img
src="./src/assets/images/illustration-sign-up-desktop.svg"
alt="desktop sign up illustration"
class="signup-image-2 hidden mobile2:block self-end rounded-2xl min-h-full min-w-max"
/>
</section>
<main
class="Signup-main-wrapper w-full p-10 pt-8 pr-7 font-sans font-400 grid gap-5 content-evenly"
>
<h1 class="text-[42px] font-700">Stay updated!</h1>
<p>Join 60,000+ product managers receiving monthly updates on:</p>
<ul class="grid gap-5">
<li class="flex items-start">
<img src="./src/assets/images/icon-list.svg" alt="list icon" />
<span class="ml-4"
>Product discovery and building what matters</span
>
</li>
<li class="flex items-start">
<img src="./src/assets/images/icon-list.svg" alt="list icon" />
<span class="ml-4">Measuring to ensure updates are a success</span>
</li>
<li class="flex items-start">
<img src="./src/assets/images/icon-list.svg" alt="list icon" />
<span class="ml-4">And much more!</span>
</li>
</ul>
<form action="" class="form mt-2" autocomplete="off" novalidate>
<div class="label-box flex justify-between">
<label for="#email" class="email-label text-xs font-700"
>Email address</label
>
<span class="label-error text-xs font-700 text-Tomato"></span>
</div>
<input
required
id="#email"
type="email"
placeholder="[email protected]"
class="email-input input mt-2 mb-6"
/>
<button type="submit" class="submit-button btn font-700">
Subscribe to monthly newsletter
</button>
</form>
</main>
</div> -->
<!-- ! Sign-up form end -->
<!-- ! Success message start -->
<!-- <div class="Success-wrapper View-wrapper">
<main
class="Success-main-wrapper py-9 mx-6 font-sans font-700 grid gap-7 max374:min-h-screen mobile2:max-w-[370px]"
>
<article class="confirmation-part place-self-center grid gap-7">
<img src="./src/assets/images/icon-success.svg" alt="success icon" />
<h1 class="text-[38px]/[40px] mobile2:text-5xl">
Thanks for subscribing!
</h1>
<p class="confirmation-text font-400">
A confirmation email has been sent to
<a href="#" class="email-link font-700"
><span class="confirmation-email"></span></a
>. Please open it and click the button inside to confirm your
subscription.
</p>
</article>
<button type="submit" class="Dismiss-button btn place-self-end">
Dismiss message
</button>
</main>
</div> -->
<!-- ! Success message end -->
</body>
</html>