-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSignUp.html
More file actions
195 lines (177 loc) · 6.44 KB
/
Copy pathSignUp.html
File metadata and controls
195 lines (177 loc) · 6.44 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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
</head>
<body>
<article>
<header>
<img src="./image/full stack.png" alt="this is a log" width="90px" height="90px">
<h1>bushra fateh rasheed</h1>
<ul>
<li><a href="Home.html">Home</a></li>
<li> <a href="Blog.html">Blog</a></li>
<li> <a href="SignUp.html">Sign Up</a></li>
<li> <a href="SignIn.html">Sign In</a></li>
<li> <a href="Schedule.html">Schedule</a></li>
<li>
<a href="layout/flex.html">Layout Design</a>
<ul>
<li> <a href="./layout/flot.html">float layout wiht side nav</a></li>
<li><a href="./layout/flex.html">flexbox layout with side nav</a></li>
<li> <a href="./layout/grid.html">blogGrid view</a></li>
</ul>
</li>
</ul>
</header>
</article>
<main>
<form action="">
<table>
<tr>
<th>Username</th>
</tr>
<tr>
<td> <input type text="text" placeholder="username" ></td>
</tr>
<tr>
<td>Fullname</td>
<tr>
<td> <input type text="text" placeholder="fullname" ></td>
</tr>
</tr>
<td>Email</td>
<tr>
<td> <input type="email" placeholder="email" ></td>
</tr>
</tr>
<td>Phone</td>
<tr>
<td> <input type text="text" placeholder="0799 446 35 77" ></td>
</tr>
</tr>
<td>password</td>
<tr>
<td> <input type="password" placeholder="password" ></td>
</tr>
</tr>
<td>date of birth</td>
<tr>
<td> <input type="date" ></td>
</tr>
</tr>
<td>color</td>
<tr>
<td> <input type="color" ></td>
</tr>
</tr>
<tr>
<td>
<fieldset>
<legend>marital status</legend>
<p>
<input type="radio" id="we" name="course">
<label for="we">Single</label>
</p>
<p>
<input type="radio" id="ssd" name="course">
<label for=“ssd”>Married </label>
</p>
<input type="radio" id="ssd" name="course">
<label for=“ssd”>It is private</label>
</p>
</fieldset>
</td>
</tr>
<tr>
<tr>
<td> <label for="department"> No childern</label>
</td>
</tr>
<td>
<select >
<option>No</option>
</td>
</tr>
<tr>
<td>
<h4>choose your Degrees</h4>
<select name="department" id="department" multiple>
<optgroup>
<option value="software">Diploma</option>
<option value="civil">Bachelor of Science</option>
<option value="mechanic">Bachelor of Arit</option>
<option value="biology">High Diploma</option>
<option value="biology">Master of Science</option>
</optgroup>
<optgroup label="">
<option value="biology"></option>
<option value="chemistry"></option>
<option value="physics"></option>
</optgroup>
</select>
</td>
</tr>
<tr>
<td>
<textarea placeholder="aboout yourself"></textarea>
</td>
</tr>
<tr>
<td >
<p>no file choosn</p>
<button type="submit">choose your file</button> </td>
</tr>
<tr>
<td>
<fieldset>
<legend>Gender</legend>
<p>
<input type="radio" id="we" name="course">
<label for="we">Male</label>
</p>
<p>
<input type="radio" id="ssd" name="course">
<label for=“ssd”>Female </label>
</p>
</fieldse>
</td>
</tr>
<tr>
<td>
<fieldset>
<legend>Agreements</legend>
<label for="">please read the terms and agreements</label>
<p>
<input type="checkbox">
<label for="we">i have read all of them </label>
</p>
<p>
<input type="checkbox">
<label for=“ssd”>Yes , i'm agree </label>
</p>
</fieldse>
</td>
</tr>
</table>
<button type="SignUp" > SignIn</button>
</form>
</main>
<footer>
<h4>Sitemap</h4>
<ul>
<li><a href="Home.html">Home</a></li>
<li><a href="About.html">About</a></li>
<li><a href="Contact.html">Contact</a></li>
<li><a href="SignIn.html">Log In</a></li>
</ul>
<h4>Terms and Quick Links</h4>
<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>
<h4>Address and Contact</h4>
<ul>
<li><i>City, Governorate, Country</i></li>
<li><i>Phone: 0694-0000-000-0000</i></li>
<li><i>Email: example@domain.com</i></li>
</ul>
</footer>