-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuser.html
More file actions
45 lines (45 loc) · 1.47 KB
/
user.html
File metadata and controls
45 lines (45 loc) · 1.47 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF8">
<title>User Details</title>
</head>
<body>
<form action="mailto:varshneymrinal2005@gmail.com" method="post" enctype="text/plain">
<table cellspacing="10" align="center">
<thead>
<tr >
<th colspan="2"><h2>User's Details</h2></th>
</tr>
</thead>
<tbody>
<tr>
<td><label>Your Name</label></td>
<td><input type="text" name="your name" value=""></td>
</tr>
<tr>
<td><label>Your Email</label></td>
<td><input type="email" name="your email" value=""></td>
</tr>
<tr>
<td>D.O.B</td>
<td><input type="date"></td>
</tr>
<tr>
<td>Your profile pic</td>
<td><input type="file"></td>
</tr>
<tr>
<td>Your Message</td>
<td><textarea name="Message" rows="10" cols="30"></textarea></td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="2"><center><input type="submit" name=""></center></td>
</tr>
</tfoot>
</table>
</form>
</body>
</html>