-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathadministrator_homepage.html
101 lines (88 loc) · 2.28 KB
/
administrator_homepage.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
100
101
<!DOCTYPE html>
<html>
<head>
<title>Administrator Homepage</title>
<link rel="stylesheet" type="text/css" href="style/new.css" />
</head>
<body id="body">
<div id ="top">
<div id="logo">
<img src="images/logo2.png" width="200px" height="150px" />
</div>
<div id="header_text">
<div id="header_text_main">
</br>
</br>
<h2> Student Performance Prediction </h2>
</div>
<div id="header_text_about">
<font color="orange">
<h5> About <h5>
<h6> Student Performance Prediction </h6>
</font>
<h6>Predicts student performance based on their demographic data and their learning behaviors.</h6>
</div>
</div>
</div>
<div id = "middle">
<div id = "left_section">
</div>
<div id = "middle_section">
<table border="0">
<tr>
<td>
<h3 class="welcome">
Welcome to your Homepage
</h3>
Please upload the data file containing the student's information.
</td>
</tr>
</table>
<br/>
<br/>
<div id="">
<form action="new_student_data_upload.php" method="post" enctype="multipart/form-data" target="_blank" >
<fieldset id="sacco-uploading-002" >
<legend><b>Upload Student Data</b></legend>
<table>
<tr>
<td><label>Filename:</label></td>
</tr>
<tr>
<td><input type="file" name="upload_001" id="upload_001" /></td>
</tr>
<tr>
<td>
<input type="reset" value="cancel" /><input type="submit" value="Upload Students Data" />
</td>
</tr>
</table>
</fieldset>
</form>
</div
</div>
<div id = "right_section">
</div>
<div id = "bottom">
<div id="bottom_links">
<div id="bottom_links1">
<h5>
<a href="about.html" style="text-decoration: none"> About </a> <br />
Click here to learn <br /> more about student <br /> performance prediction.
</h5>
</div>
<div id="bottom_links1">
<h5>
<a href="help.html" style="text-decoration: none"> Help </a> <br />
Click here to get <br /> help if you are <br /> experiencing any problems
</h5>
</div>
<div id="bottom_links1">
</div>
</div>
<div id="copyright">
<h5> Copyright © 2014 by Esther Kihiu. All rights reserved. </h5>
</div>
</div>
</body>
</html>