-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCheckStudent.html
More file actions
109 lines (97 loc) · 2.7 KB
/
Copy pathCheckStudent.html
File metadata and controls
109 lines (97 loc) · 2.7 KB
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="style.css" />
<title>Community College Student Registration System</title>
<script src="js/jquery-min.js"></script>
<script src="js/polyfill.js"></script>
<script src="js/check_students.js"></script>
<style type="text/css">
h3 {
font-family: Calibri;
font-size: 22pt;
font-style: normal;
font-weight: bold;
color: SlateBlue;
text-align: center;
text-decoration: underline
}
table {
font-family: Calibri;
color: black;
font-size: 11pt;
font-style: normal;
text-align:;
background-color: #f5deb3;
border-collapse: collapse;
border: 2px solid navy
}
table.inner {
border: 0px
}
.isa_info,.isa_success,.isa_warning,.isa_error {
margin: 10px 0px;
padding: 12px;
}
.isa_info {
color: #00529B;
background-color: #BDE5F8;
}
.isa_success {
color: #4F8A10;
background-color: #DFF2BF;
}
.isa_warning {
color: #9F6000;
background-color: #FEEFB3;
}
.isa_error {
color: #D800p0C;
background-color: #FFBABA;
}
</style>
</head>
<body>
<div id="container">
<div id="ma1inpic1">
<h1>Community College Student Registration System</h1>
</div>
<div id="menu">
<ul>
<li class="menuitem"><a href="index.html">Home</a></li>
<li class="menuitem"><a href="AddStudent.html">Add Students</a></li>
<li class="menuitem"><a href="AddCourse.html">Add Course</a></li>
<li class="menuitem"><a href="RegisterCourse.html">RegisterCourse</a></li>
</ul>
</div>
<div id="content">
<div>
<h2 style="text-align: center; padding-bottom: 10px;">List
courses of a student</h2>
<form id="post_example" name="post_example" action="#">
<table align="center" cellpadding="10">
<tr>
<td>ENTER EMAIL ID</td>
<td><input type="text" name="EMAIL" id="EMAIL"
value="pramodhs@live.com" /></td>
</tr>
<!----- Submit and Reset ------------------------------------------------->
<tr>
<td colspan="2" align="center"><input type="button"
name="submit_it2" id="submit_it2" value="Submit"></input></td>
</tr>
</table>
</form>
<div id="get_inventory" style="padding-top:10px;"></div>
<div id="fail-msg"
style="width: 457px; margin: 0 auto; margin-top: 10px; display: none;"
class="isa_error">Replace this text with your own text.</div>
<div id="success-msg"
style="width: 457px; margin: 0 auto; margin-top: 10px; display: none;"
class="isa_success">Replace this text with your own text.</div>
</div>
</div>
</div>
</body>
</html>