-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvalid.html
More file actions
69 lines (66 loc) · 2.04 KB
/
valid.html
File metadata and controls
69 lines (66 loc) · 2.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="icon"
type="image/png"
href="images/icon-success.svg"
/>
<!-- normalize File -->
<link rel="stylesheet" href="normalize.css" />
<!-- Main Css File -->
<link rel="stylesheet" href="style.css" />
<title>Valid | form</title>
</head>
<body>
<span class="layer"></span>
<!-- Sign-up form start -->
<main class="Subscribe">
<div class="valid-form">
<h1>Stay updated!</h1>
<p>Join 60,000+ product managers receiving monthly updates on:</p>
<ul>
<li>Product discovery and building what matters</li>
<li>Measuring to ensure updates are a success</li>
<li>And much more!</li>
</ul>
<form action="" id="validForm">
<p>Email address</p>
<span class="notValid"></span>
<input type="text" class="inp" name="entries" placeholder="email@company.com" />
<input
type="submit"
name="send"
value="Subscribe to monthly newsletter"
/>
</form>
</div>
<div class="image">
</div>
</main>
<div class="Success">
<div class="icon">
<img
src="./images/icon-success.svg"
alt="icon-success"
loading="lazy"
/>
</div>
<h1>
Thanks for <br />
subscribing!
</h1>
<p>
A confirmation email has been sent to
<strong>ash@loremcompany.com.</strong> Please open it and click the
button inside to confirm your subscription.
</p>
<div class="btn">
<button class="dismiss">Dismiss message</button>
</div>
</div>
<script src="Magic.js"></script>
</body>
</html>