-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
126 lines (110 loc) · 3.61 KB
/
signup.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Newsing</title>
<link href="css/styles.css" type="text/css" rel="stylesheet" />
</head>
<body>
<main class="main">
<form method="post" action="/">
<div class="container">
<img
src="https://i.postimg.cc/TYC8ynvb/illustration-sign-up-mobile.png"
alt="mobile-graph"
class="img-mobile-sign-up"
/>
<div class="hero-text">
<h3 class="h-text">Stay Updated With Newsing!</h3>
<p class="p-text">
Join 60,000+ product managers receiving monthly updates on:
</p>
<ul class="icon-list">
<li class="p-text">
<img
src="https://i.postimg.cc/TYRMYCFG/icon-list.png"
alt="tick"
class="icon-list"
/>
<p class="p-text">
Product discovery and building what matters
</p>
</li>
<li class="p-text">
<img
src="https://i.postimg.cc/TYRMYCFG/icon-list.png"
alt="tick"
class="icon-list"
/>
<p class="p-text">Measuring to ensure updates are a success</p>
</li>
<li class="p-text">
<img
src="https://i.postimg.cc/TYRMYCFG/icon-list.png"
alt="tick"
class="icon-list"
/>
<p class="p-text">And much more!</p>
</li>
</ul>
<div class="email-submit">
<div>
<label for="fName" class="s-text">First Name</label>
</div>
<input
type="text"
id="fName"
placeholder="First Name"
class="p-text"
name="fName"
/>
<div>
<label for="lName" class="s-text">Last Name</label>
</div>
<input
type="text"
id="lName"
placeholder="Last Name"
class="p-text"
name="lName"
/>
<div class="email-field">
<label for="fEmail" class="s-text">Email Address</label>
</div>
<input
type="email"
class="form-control"
id="fEmail"
placeholder="[email protected]"
name="fEmail"
/>
<button type="submit" class="submit-btn btn p-text">
Subscribe to monthly newsletter
</button>
</div>
</div>
<img
src="https://i.postimg.cc/SxsBcjmv/illustration-sign-up-desktop.png"
alt="desktop-graph"
class="img-sign-up"
/>
</div>
<div class="thank_you">
<div class="confirm-text">
<img
src="https://i.postimg.cc/9XPHhvxJ/icon-success.png"
alt="success tick"
/>
<h1 class="h-text">Thanks for subscribing!</h1>
<p class="p-text">
A confirmation email has been sent to
<span class="post_email">[email protected]. </span> Please open
it and click the button inside to confirm your subscription.
</p>
</div>
<button class="dismiss-btn btn p-text">Dismiss Message</button>
</div>
</form>
</main>
</body>
</html>