forked from dsgn425-2017/essential_html
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnew.html
More file actions
41 lines (35 loc) · 917 Bytes
/
new.html
File metadata and controls
41 lines (35 loc) · 917 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>
<head>
<title>Course: New Person</title>
</head>
<body>
<h1>Add A New Person</h1>
<form action="http://www.google.com">
<div>
<label>First Name</label>
<input name="first_name" type="file" placeholder="Enter first name">
</div>
<div>
<label>Last Name</label>
<input name="last_name" type="text" placeholder="Enter last name">
</div>
<div>
<label>Role</label>
<select name="program_id">
<option value="12">Instructor</option>
<option value="42">Teaching Assistant</option>
<option value="34">Student</option>
</select>
</div>
<div>
<label>Picture URL</label>
<input name="image_url" type="text" value="http://graph.facebook.com/2/picture">
</div>
<div>
<button>Create Student</button>
or <a href="index.html">Cancel</a>
</div>
</form>
</body>
</html>