-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (43 loc) · 1.64 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
<!DOCTYPE html>
<html dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>form</title>
<link rel="stylesheet" href="main.css">
</head>
<body>
<div class="container">
<form class="form" method="post">
<div class="block">
<span class="heading">SIGN UP</span>
</div>
<div class="block">
<input class="universal" type="text" name="text" value="" placeholder="First name">
</div>
<div class="block">
<input class="universal" type="text" name="text" value="" placeholder="Last name">
</div>
<div class="block">
<input class="universal" type="email" name="email" value="" placeholder="Email">
</div>
<div class="block">
<input class="universal" type="password" name="password" value="" placeholder="Password (Minimum 6 characters)">
</div>
<div class="block">
<input class="universal" type="password" name="password" value="" placeholder="Confirm password">
</div>
<div class="block">
<div class="block_1">
<input class="custom_checkbox" id="checkbox" type="checkbox" name="checkbox" value="1">
<label for="checkbox">Creating an account means you’re okay with our
<span class="style">Terms of Service</span> and <span class="style">Privacy Policy</span></label>
</div>
</div>
<div class="block">
<input class="button" type="submit" name="button" value="CREATE ACCOUNT">
</div>
</form>
</div>
</body>
</html>