-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
89 lines (87 loc) · 2.83 KB
/
index.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html>
<head> </head>
<body>
<header>
<h2>Already Regsitered? <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 type="email" id="email" placeholder="abc@example.com" name="Email" />
<label for="password" >Password</label>
<input type="password" id="password" />
<button type="LOGIN" width="100%">
<img
src="https://www.google.com/imgres?imgurl=http%3A%2F%2Fwww.codingninjas.com%2Fblog%2Fwp-content%2Fuploads%2F2020%2F04%2FLOGO-05.png&imgrefurl=https%3A%2F%2Fwww.codingninjas.com%2Fblog%2F2020%2F09%2F03%2F10-best-android-projects-for-beginners%2F&tbnid=nJSPrmjRxlm8sM&vet=12ahUKEwjdme_2nYX5AhX3LrcAHaziBI8QMygCegUIARC-AQ..i&docid=gLzl9p97YgCZMM&w=2054&h=1077&q=codingninjas%20icon&ved=2ahUKEwjdme_2nYX5AhX3LrcAHaziBI8QMygCegUIARC-AQ"
width="10%"
height="10%"
/>LOGIN
</button>
</form>
</header>
<hr />
<div>
<main>
<section>
<a href="https://codingninjas.com">Coding Ninjas Blogs</a>
</div>
<br />
<img
src="https://ninjasfiles.s3.amazonaws.com/0000000000001395.png"
width="100%"
height="10%"
/>
<br>
<hr />
<br>
<section>
<h1><u>REGISTRATION</u></h1>
<br />
<br />
<form action="" method="post">
<label for="firstname"> First Name:   </label>
<input type="text" id="firstname" name="first name">
<br>
<label for="lastname"> Last Name:   </label>
<input type="text" id="lastname" name="lastname">
<table>
<tr >
<td rowspan="3">Current Address: </td>
<td>Flat No./House No.</td>
<td><input type="number" name="flat No"></input>
</tr>
<tr>
<td>Locality</td>
<td><input type="text" name="Locality"></td>
</tr>
<tr>
<td>City</td>
<td><input type="text" name="City"></td>
</tr>
</table>
<div>
<b><label for="question">Is Current Address and Permanant Address Same?</label></b>
<input type="radio" id="question" name="addressinfo" checked>
<label for="question">Yes</label>
<input type="radio" id="option2" name="addressinfo" >
<label for="option2">No</label>
</div>
<div>
<label for="emailid">Email: </label>
<input type="email" id="emailid" name="email" placeholder="abc@example.com">
</div>
<div>
<label for="password">Password: </label>
<input type="password" id="password" name="password">
</div>
<div>
<button type="submit">Register</button>
</div>
<br>
<br>
</form>
</section>
</main>
</body>
</html>