-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstudCRUD.html
99 lines (93 loc) · 2.96 KB
/
studCRUD.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html>
<head>
<title>
Student Database
</title>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
/>
<link rel="stylesheet" href="./backend/css/studCRUD.css" />
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="./homepage.html">Govt Of Sikkim</a>
<div class="right m-2">
<a href="./studCRUD.html">
<button class="btn btn-outline-primary m-1">Student DB</button> </a
><a href="./teachCRUD.html">
<button class="btn btn-outline-primary m-1">Teachers DB</button>
</a>
<div class="form-inline">
<label id="netStatus" class="badge badge-pill mx-3"></label>
<button
class="btn btn-outline-success my-2 my-sm-0 m-2"
onclick="getD()"
>
Sync Now
</button>
</div>
</div>
</nav>
<div class="">
<h2 class="m-3">Student Database Management System</h2>
<div class="row bgimg-stud">
<form
onsubmit="event.preventDefault();onFormSubmit();"
autocomplete="off"
class="max40 b-2 p-2"
>
<label>Full Name*</label
><label class="validation-error hide" id="fullNameValidationError"
>This field is required.</label
>
<input type="text" name="fullName" id="fullName" />
<div>
<label>Student UUID</label>
<input type="text" name="empCode" id="empCode" />
</div>
<div>
<label>SSC Marks</label>
<input type="text" name="sscMarks" id="sscMarks" />
</div>
<div>
<label>HSC Marks</label>
<input type="text" name="hscMarks" id="hscMarks" />
</div>
<div>
<select class="form-control" id="gender">
<option value="male">Male</option>
<option value="female">Female</option>
<option value="other">Other</option>
</select>
<label>City</label>
<input type="text" name="city" id="city" />
</div>
<div class="form-action-buttons">
<input class="btn btn-success" type="submit" value="Submit" />
</div>
</form>
</div>
<h2 class="m-3">Student Database</h2>
<table class="list" id="employeeList">
<thead>
<tr>
<th>Full Name</th>
<th>Student UUID</th>
<th>SSC Marks</th>
<th>HSC Marks</th>
<th>Gender</th>
<th>City</th>
<th></th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
<script src="./backend/js/netCheck.js"></script>
<script src="./index.js"></script>
<script src="./backend/js/StudCRUD.js"></script>
<script src="./backend/js/database.js"></script>
</body>
</html>