-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (32 loc) · 1.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Scratch Registration</title>
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link rel="stylesheet" href="css/index.css">
</head>
<body>
<form class="form" action="" method="post">
<h2 class="title">Bulk Scratch Register</h2>
<div class="form-group">
<label for="format" class="format-lbl">Name Format:</label>
<select id="format" name="nFormat">
<option value="0">First,Last</option>
<option value="1">Last,First</option>
<option value="2">First Last</option>
<option value="3">Last First</option>
</select>
</div>
<div class="form-group">
<label for="names" class="names-lbl">Student Names (In above format):</label>
<textarea id="names" name="names"></textarea>
</div>
<div class="form-group">
<label class="initials-lbl" for="initials">School Initials:</label>
<input id="initials" type="text" name="schoolInitials"/>
</div>
<button class="submit-btn" type="submit">Register</button>
</form>
</body>
</html>