-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
45 lines (44 loc) · 1.02 KB
/
form.html
File metadata and controls
45 lines (44 loc) · 1.02 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="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title> form </title>
</head>
<body>
<h1 align=center> SUBMISSION FORM </h1>
<form action="/cgi-bin/submit.cgi" method="post">
Login Name:
<input type="text" name="Login" size=25>
<br>
Password:
<input type="password" name="pass" size=20>
<br>
Date of Birth:
<input type="text" name="login" size=15>
<br>
Sex:F
<input type="radio" name="sex" value="F" CHECKED>
M
<input type="radio" name="sex" value="M">
<br>
<br>
<p> Place the order Shirt Size
<select> name="size"
<option> small </option>
<option> medium </option>
<option> large </option>
<option> xtra large </option>
</select>
<br>
prodect commends here
<br>
<textarea name="commends" rows=10 cols=20>
</textarea>
<input type="button" value="Check" onclick="validate()">
<br>
<input type="submit" value="Login" onclick="submit()">
<input type="reset" value="Clear" onclick="clear">
</p></form>
</body>
</html>