-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIndex -2- Signup.html
79 lines (68 loc) · 2.76 KB
/
Index -2- 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>SignUp</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="Style -2- Signup.css">
<title>Document</title>
</head>
<body>
<section>
<header>
<h2>Create <br> an <br> account</h2>
</header>
<div>
<!-- First/Last Name -->
<div>
<div class="">
<label for="fName-signup">First Name</label>
<input type="text" id="fName-signup" class="fName-signup" placeholder="..." required>
</div>
<div>
<label for="sName-signup">Second Name</label>
<input type="text" id="sName-signup" class="sName-signup" placeholder="..." required>
</div>
</div>
<!-- Username -->
<div>
<label for="userName-signup">User Name</label>
<input type="text" id="userName-signup" class="userName-signup" placeholder="..." required>
</div>
<!-- Password -->
<div>
<label for="password-signup">Password</label>
<input type="password" id="password-signup" class="password-signup" placeholder="..." required>
</div>
<!-- Date of birth -->
<div>
<label for="doBirth-signup">Date of Birth</label>
<input type="date" id="doBirth-signup" class="doBirth-signup" required>
</div>
<!-- Email -->
<div>
<label for="email-signup">Email Address</label>
<input type="email" id="email-signup" class="email-signup" placeholder="[email protected]" required>
</div>
<!-- Location -->
<div>
<label for="loc-country-signup">Location</label>
<!-- Country -->
<select name="" id="loc-country-signup" class="loc-country-signup">
<option value="Egypt">Egypt</option>
<option value="Dubai">Dubai</option>
<option value="Moroco">Moroco</option>
</select>
<!-- City -->
<input type="text" placeholder="City" class="loc-city-signup" required>
<!-- District -->
<label for="district-signup">District</label>
<input type="text" placeholder="..." id="district-signup" class="loc-district-signup" required>
</div>
<!-- Submit Button -->
<button class="Signup-Submit-btn">Done</button>
<script src="Script -2- Signup.js"></script>
</div>
</section>
</body>
</html>