-
Notifications
You must be signed in to change notification settings - Fork 1
/
success.htm
133 lines (133 loc) · 3.01 KB
/
success.htm
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta name="viewport" content="width=device-width" />
<title>Sapient Systems : SchoolSys</title>
<link rel="stylesheet"
type="text/css"
href="style/dropdown.css" />
<link rel="stylesheet"
type="text/css"
href="style/main.css" />
<link rel="stylesheet"
type="text/css"
media="only screen and (max-device-width: 480px)"
href="style/mobile.css" />
</head>
<body>
<div id="wrapper">
<div class="header">
<ul id="nav_global">
<li>
<a href="?section=students">students</a>
<ul>
<li>
<a href="?section=students&action=add">add student</a>
</li>
<li>
<a href="?section=students&action=list">list students</a>
</li>
</ul>
</li> <!--
<li>
<a href="?section=users">users</a>
<ul>
<li>
<a href="?section=users&action=list">list</a>
</li>
<li>
<a href="?section=users&action=add">add</a>
</li>
</ul>
</li> -->
<li>
<a href="?section=subjects">subjects</a>
<ul>
<li>
<a href="?section=subjects&action=add">add subject</a>
</li>
<li>
<a href="?section=subjects&action=list">list subjects</a>
</li>
</ul>
</li>
<li>
<a href="?section=streams">streams</a>
<ul>
<li>
<a href="?section=streams&action=add">add stream</a>
</li>
<li>
<a href="?section=streams&action=list">list stream</a>
</li>
</ul>
</li>
<li>
<a href="?section=tests">tests</a>
<ul>
<li>
<a href="?section=tests&action=add">add test</a>
</li>
<li>
<a href="?section=tests&action=list">list tests</a>
</li>
<!-- <li>
<a href="?section=tests&action=entry">enter marks</a>
<ul>
<li>
<a href="?section=tests&action=entry&mode=bulk">in bulk</a>
</li>
<li>
<a href="?section=tests&action=entry&mode=individual">per student</a>
</li>
</ul>
</li>
--> </ul>
</li>
<li>
<a href="?section=access">admin</a>
<ul>
<li>
<a href="?section=access&action=toggle">log out</a>
</li>
</ul>
</li>
</ul>
</div>
<div class="body">
<div class="dialog success">
<p>The following student : </p>
<table class="pretty">
<tbody>
<tr>
<th>school ID</th>
<td>5692</td>
</tr>
<tr>
<th>name</th>
<td>Mugo, Alex Kamau</td>
</tr>
<tr>
<th>KCPE Marks</th>
<td>412</td>
</tr>
<tr>
<th>Admitted on</th>
<td>2014-12-26</td>
</tr>
</tbody>
</table>
<p>Was successfully added to the system</p>
<p>
<a href="?section=students&action=add"
class="button">add more</a>
<a href="?section=students&action=list"
class="button">view list</a>
<a href="?"
class="button">home</a> </p>
</p>
</div>
</div>
</div>
</body>
</html>