-
Notifications
You must be signed in to change notification settings - Fork 0
/
Signup.html
66 lines (65 loc) · 2.36 KB
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Signup</title>
</head>
<body>
<header>
<table>
<tr>
<td colspan="1" align="center"> <a href="./index.html" target="_self" > <img src="./images/logo.jpeg"
alt="Abdullah Mall " width="80px" height="100px" /></a>
</td>
<td colspan="1" align="center"><a href="./index.html">Home</a></td>
<td colspan="1" align="center"> <a href="./Contact.html">Contact</a></td>
<td colspan="1" align="center"><a href="./aboutus.html">About us</a></td>
<td colspan="1" align="center"><button><a href="./login.html" target="_self"><b>Login</b></a></button></td>
<td colspan="1" align="center"><button><a href="./Signup.html" target="_self"><b>Signup</b></a></button></td>
</tr>
</table>
</header>
<br/>
<br/>
<br/>
<table align="center">
<tr>
<td>
<h1>Signup</h1>
<form action="Signup.html">
<table>
<tr>
<td> <label for="first name">First Name</label></td>
<td> <input placeholder="First Name" type="text" name="first name"
id="first name" required /></td>
</tr>
<tr>
<td><label for="last name">Last Name</label></td>
<td> <input placeholder="Last Name" type="text"
name="last name " id="last name" required /></td>
</tr>
<tr>
<td> <label for="email">Email</label></td>
<td> <input placeholder="Email" type="email" name="email" id="email" required /></td>
</tr>
<tr>
<td> <label for="password">Password</label></td>
<td> <input placeholder="Password" type="password"
name="password" id="password" required /> </td>
</tr>
<tr>
<td><label for="c password">Conform Password</label></td>
<td> <input placeholder="Conform Password" type="password"
name="c password" id="c password"> </td>
</tr>
<tr>
<td colspan="2" align="right"><input type="submit" value="Signup"></td>
</tr>
</table>
</form>
</td>
</tr>
</table>
</body>
</html>