-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
98 lines (69 loc) · 3.63 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
90
91
92
93
94
95
96
97
98
<!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>HTML Registration Form</title>
</head>
<body bgcolor="silver" >
<table align="center" >
<!-- <tr align="center" bgcolor="black" width="100%">
<td><img src="/img/logo.jpg" alt="image" width="200px"></td>
</tr> -->
<br><br><br><br><br>
<tr bgcolor="black" >
<td width="30%" ><img src="https://cdn.pixabay.com/photo/2021/10/25/19/47/sunset-6741863_960_720.jpg" height="500px" alt="Yha pe dyan mat do "></td>
<td bgcolor="white">
<table width"80%" align="center" >
<tr>
<td align="center"> <h1>Sign up</h1></td>
</tr>
<tr>
<td><label for="name">Name: </label></td>
<td><input type="text" id="name" name="name" required placeholder="Yha naam likho yaar">
<br><br></td>
</tr>
<tr>
<td><label for="mail">E-mail: </label></td>
<td><input type="email" id="E-mail" name="name" required placeholder="Yha E-mail likho yaar">
<br><br></td>
</tr>
<tr>
<td><label for="pass">Password: </label></td>
<td><input type="password" id="pass" required placeholder="Yha password likho yaar">
<br><br></td>
</tr>
<tr>
<td><label for="Date of birth">Date of birth: </label></td>
<td><input type="date" id="Date of birth" name="name" required placeholder="Yha Date of birth likho yaar"></td>
</tr>
<tr>
<td><label for="Gender">Gender: </label></td>
<td><input type="radio" id="gender" name="gender" value="Male">Male
<br><br>
</td>
<td><input type="radio" id="gender" name="gender" value="female">Female <br><br></td>
<br><br>
<td><input type="radio" id="gender" name="gender" value="trans">Other
<br><br>
</td>
</tr>
<tr>
<td><label for="about">Aesa kya Khaas Hai Tumhare Andar: </label></td>
<td>
<textarea name="" id="" cols="30" rows="10"></textarea>
<br><br>
</td>
</tr>
<tr>
<td>
<input type="submit" value="Register" name="signup">
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>