-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.php
More file actions
40 lines (31 loc) · 1.14 KB
/
Copy pathform.php
File metadata and controls
40 lines (31 loc) · 1.14 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
<html>
<body>
<form action="#" method="POST">
<label for="firstname"><b>FIRST NAME</b></label>
<input type="text" id="first" placeholder="" required>
<label for="sirname"><b>SIR NAME</b></label>
<input type="text" id="sir" placeholder="" required>
<label for="othername"><b>OTHER NAME</b></label>
<input type="text" id="other" placeholder="" required><br>
<br>
<label for="country"><b>COUNTRY</b></label>
<input type="text" placeholder="" required><br>
<br>
<label for="state"><b>STATE</b></label>
<input type="text" placeholder="" required><br>
<br>
<fieldset required>
<legend>contact details</legends>
<label>Email Address:<input type="email" name="email" required></label>
<label>Phone Number:<input type="number" name="phone" required></label>
</fieldset>
<label for="gender"><b>GENDER</b></label>
<select name="gender" id="gender" required>
<option value="male">MALE</option>
<option value="female">FEMALE</option>
</select><br><br>
<input type="submit" value="submit">
<!--input type="reset" value="reset"-->
</form>
</body>
</html>