-
Notifications
You must be signed in to change notification settings - Fork 85
/
index.html
69 lines (59 loc) · 2.37 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
67
68
69
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="layout.css">
</head>
<body>
<form action="/form-handling-url" method="post">
<fieldset>
<legend>Add user</legend>
<div>
<label for="firstName">First name</label>
<input type="text" id="firstName" name="first_name">
</div>
<div>
<label for="lastName">Last name</label>
<input type="text" id="lastName" name="last_name">
</div>
<div>
<label for="email">Email</label>
<input type="email" id="email" name="email_address">
</div>
<div>
<label for="role">Status</label>
<select id="role" name="user_role_name">
<option value="student">Student</option>
<option value="instructor">Instructor</option>
<option value="guest">Guest</option>
</select>
</div>
<div>
<p>Choose your favorite Web language:</p>
<input type="radio" id="html" name="fav_language" value="HTML">
<label for="html">HTML</label><br>
<input type="radio" id="css" name="fav_language" value="CSS">
<label for="css">CSS</label><br>
<input type="radio" id="javascript" name="fav_language" value="JavaScript">
<label for="javascript">JavaScript</label>
</div>
<div>
<label for="comments">Comments</label>
<textarea id="comments" name="comments"></textarea>
</div>
<div>
<label for="date">Date</label>
<input type="date" id="date" name="date">
</div>
<div>
<input type="checkbox" id="signup" name="signup" value="Signup">
<label for="signup">Sign up for news letter</label><br>
<input type="checkbox" id="terms" name="terms" value="Terms">
<label for="terms"> Agree to terms and conditions</label>
</div>
<div>
<button type="submit">Submit</button>
</div>
</fieldset>
</form>
</body>
</html>