-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (38 loc) · 1.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SignUp Form</title>
<link rel="stylesheet" href="style.css">
<script src="script.js" defer></script>
</head>
<body>
<div class="auth-modal">
<div class="close-icon">⊗</div>
<h2>Sign up</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Molestias, voluptatum!
deleniti.</p>
<form action="#">
<input name="username" id="username" placeholder="username" type="text">
<input name="password" id="password" placeholder="password" type="password">
<input name="password-check" id="password-check" placeholder="confirm password" type="password">
<label for="tandc">
<input name="tandc" id="tandc" type="checkbox">
I agree to the terms and conditions.
</label>
<input type="submit" class="form-button">
</form>
<hr>
<h2>download the app</h2>
<div class="link-container">
<a href="https://play.google.com">
<img src="./images/GetItOnGooglePlay_Badge_Web_color_English.png" alt="play store icon">
</a>
<a href="https://www.apple.com/store">
<img src="./images/GetItOnGooglePlay_Badge_Web_color_English.png" alt="apple store icon">
</a>
</div>
</div>
</body>
</html>