-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
108 lines (65 loc) · 2.64 KB
/
form.html
File metadata and controls
108 lines (65 loc) · 2.64 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Form Assignment</title>
<meta property="og:title" content="Michael Tucker Portal for WDD230">
<meta property="og:type" content="website">
<meta property="og:url" content="https://tucktuck94.github.io/wdd230/form.html">
<meta property="og:image" content="images/normancampus.jpg">
<link rel="stylesheet" href="styles/normalize.css">
<link rel="stylesheet" href="styles/form.css">
<link rel="icon" href="images/favicon.ico">
</head>
<body>
<header>
...
</header>
<main>
<div>
<form method="get" action="record.html">
<label>Username*
<input type="text" id="username" name="username" autocomplete="off" required>
</label>
<label>Password*
<input type="password" id="password" name="password" autocomplete="off" required>
</label>
<label>Confirm Password*
<input type="password" id="confirmPassword" name="confirmPassword" autocomplete="off" required>
</label>
<label>Email*
<input type="email" id="email" name="email" placeholder="example@gmail.com"
title="Please enter a valid email address!" autocomplete="email" required>
</label>
<label>Page Rating
<input type="range" min="1" max="10" value="5" step="1" list="rangevalues" id="rating" name="rating"
required>
</label>
<datalist id="rangevalues">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
<option value="9">9</option>
<option value="10">10</option>
</datalist>
<button type="submit">Send your feedback!</button>
</form>
</div>
</main>
<footer>
<footer>
<p></p>
<p id="lastModified"></p>
</footer>
</footer>
<script src="scripts/password.js"></script>
<script src="scripts/rangeslider.js"></script>
<script src="scripts/getdates.js"></script>
</body>
</html>