-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
41 lines (36 loc) · 957 Bytes
/
forms.html
File metadata and controls
41 lines (36 loc) · 957 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Forms</title>
</head>
<body>
<form name="Enter_Area">
<fieldset> <legend>User Enter Area</legend>
Username : <input type="text" name="username">
<br>
<br>
Password : <input type="password" name="password">
<br>
<br>
<input type="button" value="Submit">
</fieldset>
</form>
<hr>
<form name="Survey_Area">
<fieldset> <legend>Survey Area</legend>
Where do you live?*
<br>
<br>
<input type="checkbox" name="address" value="Turkey">Turkey
<input type="checkbox" name="address" value="Slovenia">Slovenia
<input type="checkbox" name="address" value="United States">United States
<input type="checkbox" name="address" value="Other">Other
</fieldset>
</form>
<br>
<br>
<script src="js_files/forms.js"></script>
<input type="button" value="check" onclick="checker();">
</body>
</html>