-
Notifications
You must be signed in to change notification settings - Fork 4
/
edit.html
43 lines (35 loc) · 1.2 KB
/
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
37
38
39
40
41
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<title>Student Selector</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Mali" rel="stylesheet">
</head>
<body>
<div id="title">
<h3> Student Selector </h3>
</div>
<a href="popup.html"><button class="btns" id="back">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 class="btns" id="btn">Select Period </button>
-->
<h3>One name per line</h3>
<textarea id="display" rows="18" cols="40" autofocus="true"></textarea>
<a href="popup.html"><button class="btns" id="save">Save</button></a>
</div>
<script src="edit.js">
</script>
</body>
</html>