Skip to content

Commit 66ede19

Browse files
committed
form for post / git method
1 parent 6903164 commit 66ede19

File tree

1 file changed

+47
-0
lines changed

1 file changed

+47
-0
lines changed

form.html

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>Shimazi Panda</title>
5+
</head>
6+
<body bgcolor="pink">
7+
<h1 align="center">SHIMAZI PANDA</h1>
8+
<br>
9+
<form action="/action_page.txt" method="post">
10+
First name: <input type = "text" name = "first_name" />
11+
<br>
12+
Last name: <input type = "text" name = "last_name" />
13+
<br>
14+
<br>
15+
Enter Legal Info:
16+
<br>
17+
User ID : <input type = "text" name = "user_id" />
18+
<br>
19+
Password: <input type = "password" name = "password" />
20+
<br>
21+
(Password must contain at least 8 characters)
22+
<br>
23+
<br>
24+
Select Your Gender:<br>
25+
<input type = "radio" name = "subject" value = "Male"> Male
26+
<input type = "radio" name = "subject" value ="Female">Female
27+
<br>
28+
<br>
29+
Select Your Food Category:
30+
<br>
31+
<select name = "dropdown">
32+
<option value = "-select-" selected>select</option>
33+
<option value = "Veg">Veg</option>
34+
<option value = "Non - Veg">Non - Veg</option>
35+
</select>
36+
<p>Enter Your Address</p>
37+
Address: <br />
38+
<textarea rows = "5" cols = "50" name = "address">Enter Address here...
39+
</textarea>
40+
<br>
41+
<br>
42+
<br>
43+
<input type = "submit" name = "submit" value = "Submit" />
44+
<input type = "reset" name = "reset" value = "Reset" />
45+
</form>
46+
</body>
47+
</html>

0 commit comments

Comments
 (0)