-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex2.html
More file actions
146 lines (140 loc) · 3.64 KB
/
Copy pathindex2.html
File metadata and controls
146 lines (140 loc) · 3.64 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
<!DOCTYPE html>
<html>
<head>
<title>Best Coding Practices</title>
</head>
<body>
<header>
<h2>Already Registered?<u>LOGIN</u> now</h2>
<!-- image to be used:
https://ninjasfiles.s3.amazonaws.com/0000000000001395.png -->
<form action="" method="post">
<label for="email">Email</label
><input
name="email"
id="email"
type="email"
placeholder="abc@gmail.com"
/>
<label for="password">Password</label
><input id="password" name="password" type="password" />
<button type="submit">
<img
src="https://ninjasfiles.s3.amazonaws.com/0000000000001394.png"
alt=""
height="12px"
width="30px"
/>
Login
</button>
</form>
<hr />
</header>
<br />
<br />
<main>
<section>
<a href="https://www.codingninjas.com/blog/"
><b><u>Coding Ninjas Blogs</u></b></a
><br>
<img
src="https://ninjasfiles.s3.amazonaws.com/0000000000001395.png"
alt="coding ninjas love coding"
/>
</section>
<hr />
<br />
<br />
<section>
<h2><u>REGISTRATION</u></h2>
<form action="" method="post">
<table>
<tr>
<td>
<label for="firstname">First Name: </label>
</td>
<td>
<input type="text" id="firstname" />
</td>
</tr>
<tr>
<td>
<label for="lastname">Last Name: </label>
</td>
<td>
<input type="text" id="lastname" />
</td>
</tr>
</table>
<table>
<tr>
<td rowspan="3">
Current Address:
</td>
<td>Flat No./House No.</td>
<td>
<input type="text" />
</td>
</tr>
<tr>
<td>Locality</td>
<td>
<input type="text" />
</td>
</tr>
<tr>
<td>City</td>
<td>
<input type="text" />
</td>
</tr>
</table>
<table>
<tr>
<td>
<h3>Is Current address and Permanent address same?</h3>
</td>
<td>
<input id="Yes" name="current" type="radio" /><label for="Yes"
>Yes</label
>
</td>
<td>
<input id="No" name="current" type="radio" /><label for="No"
>No</label
>
</td>
</tr>
</table>
<table>
<tr>
<td>
<label for="email">Email: </label>
</td>
<td>
<input type="email" id="email" placeholder="abc@gmail.com" />
</td>
</tr>
<tr>
<td>
<label for="password">Password: </label>
</td>
<td>
<input type="password" id="password" />
</td>
</tr>
</table>
<table>
<tr>
<td>
<tr>
<button>Register</button>
</tr>
</td>
</tr>
</table>
</form>
</section>
</main>
</body>
</html>