-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
85 lines (74 loc) · 2.21 KB
/
Copy pathforms.html
File metadata and controls
85 lines (74 loc) · 2.21 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
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
<!-- This a web form to collect the data from the user and palce it in the email given here -->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Contact me</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<h1>Please fill the form</h1>
<h3>Register</h3>
<hr>
<!-- SO it redirects to the mailing address -->
<form action="mailto:robotinc000@gmail.com" method="post" enctype="text/plain">
<table> <!-- Table is uses for better looking -->
<tr>
<td>
<!-- First Name and last Name block -->
<label>First Name:</label>
<input type="text" name=" First Name:" required="" placeholder="Enter your first name" >
</td>
<td>
<label>Last Name:</label>
<input type="text" name="Last Name:" required="" placeholder="Enter your second name">
</td>
</tr>
<tr>
<td>
<!-- Gender blocl -->
<label>Gender:</label>
<label>Male</label>
<input type="radio" id ="Male" name="Gender:" value="Male">
<label>Female:</label>
<input type="radio" id="Female" name="Gender:" value="Female">
</td>
</tr>
<tr>
<td>
<!-- E-mail block -->
<label>Email:</label>
<input type="Email" name="Email" value="" required="" placeholder="Enter your Email">
</td>
<td>
<!-- password block -->
<!-- <label>Password</label>
<input type="Password" value="" name="Password" maxlength="10" minlength="5">
</td>
</tr>
<br><br>
<tr>
<td> -->
<!-- Age block -->
<!-- <label>Age:</label>
<input type="number" value="" name="" size="2">
</td>
<td> -->
<!-- Phone number block -->
<label>Mobile Number:</label>
<input type="tel" name="Contact number" maxlength="10">
</td>
</tr>
</table>
<br><br>
<!-- Terms and condition block -->
<!-- <input type="checkbox" id =" agreed " name="Terms and conditions" required="" value="Agreed">
<label>I agree to the terms and conditions</label>
<br><br> -->
<label> Your Message:</label>
<textarea name="Your Message" rows="10" cols="40" placeholder="Type your meaasge"></textarea>
<hr>
<input type="submit" >
</form>
</body>
</html>