-
Notifications
You must be signed in to change notification settings - Fork 0
/
Signup2.html
39 lines (38 loc) · 1.05 KB
/
Signup2.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
<!DOCTYPE html>
<html>
<head>
<title>SignUp form></title>
</head>
<body>
<h1>Signup</h1><br><br>
<form action="Signup" method="POST">
<table>
<tr>
<td align="right">Name:</td>
<td> <input type="text" name="uname" required placeholder="Enter name"></td>
</tr>
<tr>
<td align="right">Email:</td>
<td> <input type="email" name="uemail" required placeholder="Enter email"></td>
</tr>
<tr>
<td align="right">Password:</td>
<td> <input type="password" name="upass" required placeholder="Enter password"></td>
</tr>
<tr>
<td align="right">Address:</td>
<td> <input type="text" name="uadd" required placeholder="Enter address"></td>
</tr>
<tr>
<td align="right">Type:</td>
<td> <input type="text" name="utype" required placeholder="Enter type"></td>
</tr>
<tr>
<td></td>
<td> <input type="submit" name="submit" value="SignUp"></td>
</tr>
<p>Already have an account? <a href="Login2.html">Login</a></p>
</table>
</form>
</body>
</html>