-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
42 lines (42 loc) · 1.53 KB
/
form.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<h1>Your Details Page</h1>
<p><strong><em>You need to fill this form for security purposes!</em></strong></p>
<form action="mailto:[email protected]" method="post" enctype="text/plain">
<label>First Name: </label>
<input type="text" name="firstname"><br >
<label>Last Name: </label>
<input type="text" name="lastname"><br>
<label>Date Of Birth: </label>
<input type="date" name="dob"><br>
<label>Email: </label>
<input type="email" name="mail"><br>
<label>Contact No.: </label>
<input type="number" name="phoneno."><br>
<label>Username: </label>
<input type="text" name="username"><br>
<label>Password: </label>
<input type="password" name="password"><br>
<label>Your Message: </label>
<textarea name="message" rows="10" cols="30"></textarea><br>
<input type="submit" value="Save">
<input type="reset" value="Reset">
<hr size="2" >
<h4>Do you agree to all the details filled by you are correct❓</h4>
<label>Agree: </label>
<input type="checkbox" name="agree">
</form>
<br >
<form class="" action="index.html" method="get" style="float:left;">
<input type="submit" value="Back">
</form>
<form class="" action="contact.html" method="get">
<input type="submit" value=" Submit">
</form>
</body>
</html>