-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (73 loc) · 3.07 KB
/
index.html
File metadata and controls
78 lines (73 loc) · 3.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> Registrtion form</title>
</head>
<body>
<h2> Already Registered? <u>LOGIN</u> now </h2>
<form><label for="login-email"> Email </label>
<input type="email" name="email" id="login-email" placeholder="abc@gmail.com">
<br/><br/>
<label for="login-pass"> Password </label>
<input type="password" name="pass" id="login-pass">
<button> Login </button>
</form>
<br>
<hr>
<br>
<section>
<h2> <u>REGISTRATION</u> </h2>
<form>
<table>
<tbody><tr>
<td><label for="reg-fname"> First Name: </label></td>
<td><input type="text" name="fname" id="reg-fname"></td>
</tr>
<tr>
<td><label for="reg-lname"> Last Name: </label></td>
<td><input type="text" name="lname" id="reg-lname"></td>
</tr>
<tr>
<td><label for="reg-flat"> Current Address: </label></td>
<td colspan="2">
<table>
<tbody><tr>
<td><label for="reg-flat"> Flat No./House No. </label></td>
<td><input type="text" name="flat" id="reg-flat"></td>
</tr>
<tr>
<td><label for="reg-locality"> Locality </label></td>
<td><input type="text" name="locality" id="reg-locality"></td>
</tr>
<tr>
<td><label for="reg-city"> City </label></td>
<td><input type="text" name="city" id="reg-city"></td>
</tr>
</tbody></table>
</td>
</tr>
<tr>
<td colspan="2"><label for="reg-same"> <b>Is Current address and Permanent address same?</b> </label></td>
<td>
<input type="radio" name="perm" id="reg-same" value="yes" checked="">Yes
<input type="radio" name="perm" value="yo">No
</td>
</tr>
<tr>
<td><label for="reg-email"> Email: </label></td>
<td><input type="email" name="email" id="reg-email" placeholder="abc@gmail.com"></td>
</tr>
<tr>
<td><label for="reg-pass"> Password: </label></td>
<td><input type="password" name="pass" id="reg-pass"></td>
</tr>
</tbody></table>
<br>
<button> <big>Register</big> </button>
</form>
</section>
</body>
</html>