-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform_test.html
More file actions
40 lines (35 loc) · 977 Bytes
/
form_test.html
File metadata and controls
40 lines (35 loc) · 977 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Form Test</title>
</head>
<body>
<h1>Form Test</h1>
<form id="myForm" action="js/processor_v1.js" method="post">
<!-- paste any form elements here -->
<div>
<label for="theName">Your name:</label>
<input type="text" name="theName" id="name-input">
</div>
<div>
<p>Your favorite color:
<label>
<input type="radio" name="color" id="color1" value="red">Red</label>
<label>
<input type="radio" name="color" id="color2" value="green">Green</label>
<label>
<input type="radio" name="color" id="color3" value="blue">Blue</label>
</p>
</div>
<!-- you can delete or change the ones above -->
<div>
<input type="submit">
<input type="reset">
</div>
</form>
<!-- IMPORTANT to keep this script at bottom -->
<script src="js/processor_v1.js"></script>
</body>
</html>