-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (62 loc) · 1.88 KB
/
index.html
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Form Extractor Test</title>
<style>
fieldset {
margin-bottom: 1em;
}
</style>
</head>
<body>
<main>
<h1>Form Extractor Test Page</h1>
<form id="extractor" action="#" method="get">
<fieldset>
<input name="text" type="text" value="Text">
</fieldset>
<fieldset>
<input name="email" type="email" value="email@email.com">
</fieldset>
<fieldset>
<input name="number" type="number" step="any" min="0" max="10" value="5">
</fieldset>
<fieldset>
<input name="range" type="range" min="0" max="10" value="5">
</fieldset>
<fieldset>
<input name="checkbox" type="checkbox" value="check1" id="check1">
<label for="check1">Check 1</label>
<br>
<input name="checkbox" type="checkbox" value="check2" id="check2">
<label for="check2">Check 2</label>
<br>
<input name="checkbox" type="checkbox" value="check3" id="check3">
<label for="check3">Check 3</label>
</fieldset>
<fieldset>
<input name="radio" type="radio" value="radio1" id="radio1" checked>
<label for="radio1">Radio 1</label>
<br>
<input name="radio" type="radio" value="radio2" id="radio2">
<label for="radio2">Radio 2</label>
<br>
<input name="radio" type="radio" value="radio3" id="radio3">
<label for="radio3">Radio 3</label>
</fieldset>
<fieldset>
<input name="color" type="color" value="#9b2d2d">
</fieldset>
<fieldset>
<input name="date" type="date" value="2015-12-17">
</fieldset>
<fieldset>
<output>Output</output>
</fieldset>
</form>
</main>
<script src="js/formExtractor.js"></script>
</body>
</html>