-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindexq1.html
49 lines (41 loc) · 1006 Bytes
/
indexq1.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" http-equiv="Content-Type" >
<meta name="viewport" content="width=device-width">
<title>Registration Form</title>
</head>
<body bgcolor="black">
<form align="center" method="post" action="/wpsassignment3/login.jsp">
<center>
<h1 style="color:white">WELCOME!</h1>
<table border="2" bgcolor="grey" style="color:black">
<tr>
<td>
<b>Name:</b>
</td>
<td>
<input type="text" name="username"/>
</td>
</tr><br>
<tr><td>
<b>Email-ID:</b>
</td>
<td><input type="email" name="mail" /></td></tr><br>
<tr><td>
<b>D.O.B.:</b></td>
<td><input type="date" name="date"/></td></tr><br>
<tr><td>
<b>Mobile Number:</b>
</td>
<td><input type="text" name="phone" maxlength="10" /></td></tr><br>
<tr><td>
<b>Choose photo:</b></td>
<td><input type="file" name="image" /></td></tr><br>
<tr><td>
<input type="submit" value="Submit" />
</td></tr>
</form>
</center>
</body>
</html>