-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.html
More file actions
174 lines (174 loc) · 7.25 KB
/
signup.html
File metadata and controls
174 lines (174 loc) · 7.25 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
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=\, initial-scale=1.0" />
<link rel="stylesheet" href="./asset/css/allCss.css" />
<title>Signup</title>
</head>
<body>
<header>
<div class="left">
<img
src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQSCTDIa-7UAgAx3Z34JGBCOgPfDQG4dsTsiA&usqp=CAU"
alt="logo"
/>
<h1>Rahen Mohammed</h1>
</div>
<ul class="nav">
<li><a href="./index.html">Home</a></li>
<li><a href="./blog.html">Blog</a></li>
<li><a href="./schedule.html">Schedule</a></li>
<li id="dropdown-parent">
Layout Design
<ul class="dropdown">
<li><a href="./layout/float.html">Float Layout with Side nav</a></li>
<li><a href="./layout/flex.html">Flexbox Layout with Side nav</a></li>
<li><a href="./layout/grid.html">Blog Grid View</a></li>
</ul>
</li>
<li selected><a href="./signup.html">Signup</a></li>
<li><a href="./signin.html">Signin</a></li>
</ul>
</header>
<main class="signup">
<h2>Signup Form</h2>
<form>
<div>
<label for="username">Username</label>
<input type="text" name="username" id="username" placeholder="Username" />
</div>
<div>
<label for="fullname">fullname</label>
<input type="text" name="fullname" id="fullname" placeholder="Full Name" />
</div>
<div>
<label for="email">Email</label>
<input type="email" name="email" id="email" placeholder="domain@example.com" />
</div>
<div>
<label for="telephone">Telephone</label>
<input
type="text"
name="telephone"
id="telephone"
placeholder="00964 000 000 00 00"
/>
</div>
<div>
<label for="password">Password</label>
<input type="password" name="password" id="password" placeholder="Password" />
</div>
<div>
<label for="dob">Date of birth</label>
<input type="date" name="dob" id="dob" placeholder="22/2/2022" />
</div>
<div>
<label for="color">Profile color</label>
<input type="color" name="color" id="color" />
</div>
<fieldset class="fieldset">
<legend>Martial status</legend>
<div class="div-legend">
<input type="radio" name="status" id="single" />
<label for="single">Single</label>
</div>
<div class="div-legend">
<input type="radio" name="status" id="married" />
<label for="married">Married</label>
</div>
<div class="div-legend">
<input type="radio" name="status" id="private" />
<label for="private">It is private</label>
</div>
</fieldset>
<div>
<label for="children">No. of children</label>
<select name="children-no" id="children">
<option selected disabled>none</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
</select>
</div>
<div>
<label for="degree">Choose your Degree</label>
<select name="degree" id="degree" size="4">
<option value="diploma">Diploma</option>
<option value="">Bachelore of Science (BCs)</option>
<option value="">Bachelore of Arts (BA)</option>
<option value="">Master Science (MSc)</option>
</select>
</div>
<div>
<label for="about">About Yourself</label>
<textarea
name="about"
id="about"
cols="30"
rows="10"
placeholder="About Yourself"
></textarea>
</div>
<div>
<label for="cv">Upload your CV</label>
<input type="file" name="cv" id="cv" />
</div>
<fieldset class="fieldset">
<legend>Gender</legend>
<div>
<input type="radio" name="male" id="male" />
<label for="male">Male</label>
</div>
<div>
<input type="radio" name="female" id="female" />
<label for="female">Female</label>
</div>
</fieldset>
<fieldset>
<legend>Agreements</legend>
<p>Please read the terms and agreements</p>
<div>
<input type="checkbox" name="read" id="read" />
<label for="read">I have read all the terms</label>
</div>
<div>
<input type="checkbox" name="agree" id="agree" />
<label for="agree">Yes, I'm agree</label>
</div>
</fieldset>
<div class="btn-group">
<button>Signup</button>
<input type="reset" value="Reset" />
</div>
</form>
</main>
<footer>
<section>
<h3>Sitemap</h3>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="">About</a></li>
<li><a href="">Contact</a></li>
<li><a href="login.html">Login</a></li>
</ul>
</section>
<section>
<h3>Terms and Quick Links</h3>
<ul>
<li><a href="">Term of usage</a></li>
<li><a href="">Link 1</a></li>
<li><a href="">Link 2</a></li>
<li><a href="">Link 3</a></li>
</ul>
</section>
<section>
<h3>Address and Contact</h3>
<p>City, Governorate, Country</p>
<p>Phone: 0964 000 000 0000</p>
<p>Email: example@domain.com</p>
</section>
</footer>
</body>
</html>