forked from choihywook/info600assignment3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
48 lines (37 loc) · 952 Bytes
/
form.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Student Record Management</title>
<link rel="stylesheet" href="css/main.css" />
<script src="js/main.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
</head>
<body>
<h1>Student Record Management</h1>
<form id="inputs">
<div>
<label for="fullName">Full Name</label>
<input type="text" name="fullName" id="fullName" />
</div>
<div>
<label for="major">Major</label>
<input type="text" name="major" id="major" />
</div>
<div>
<label for="startYear">Start Year</label>
<input type="text" name="startYear" id="startYear" />
</div>
<div id="buttonParent">
<input type="button" value="Add Record" id="addRec" />
</div>
<div id="buttonParent">
<input type="button" value="Load Data" id="loadData" />
</div>
</form>
<br />
<h1>Entered Records:</h1>
<ul id="enteredRecords">
</ul>
</body>
</html>