forked from MilanDonhowe/studentSelect
-
Notifications
You must be signed in to change notification settings - Fork 1
/
edit.html
36 lines (29 loc) · 956 Bytes
/
edit.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Student Selector</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<h3> Student Selector </h3>
<a href="popup.html"><button id="edit">Back</button></a>
<select id="periodSelect">
<option value="period1">Period 1</option>
<option value="period2">Period 2</option>
<option value="period3">Period 3</option>
<option value="period4">Period 4</option>
<option value="period5">Period 5</option>
<option value="period6">Period 6</option>
<option value="period7">Period 7</option>
<option value="period8">Period 8</option>
</select>
<button id="btn">Select Period </button>
<h3>One name per line</h3>
<textarea id="display" rows="18" cols="40" autofocus="true"></textarea>
<button id="save">Save</button>
</div>
<script src="edit.js">
</script>
</body>
</html>