-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdashboard.php
More file actions
163 lines (148 loc) · 8.49 KB
/
dashboard.php
File metadata and controls
163 lines (148 loc) · 8.49 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<?php
include('header.php'); ?>
<?php include('left_bar.php'); ?>
<?php
include('dbconfig.php');
?>
<div id="page-wrapper" >
<style>
tr{
text-transform : uppercase;
}
</style>
<div id="page-inner">
<div class="row">
<div class="col-lg-12">
<h2>CHEPALUNGU TTI STUDENT PORTAL</h2>
</div>
</div>
<hr />
<div class="row">
<div class="col-lg-12 ">
<div class="alert alert-info">
<strong><h2>Welcome</h2> </strong> <h4> Welcome to the Student portal.</h4>
</div>
</div>
</div>
<!-- /. ROW --> <div class="row">
<div class="col-sm-6">
<div class="panel panel-success">
<div class="panel-heading"><i class="fa fa-user" style="padding-right:6px;"></i>Basic information</div>
<div class="panel-body">
<div class="col-md-3 col-lg-3 marginbottom10" align="center">
</div>
<table class="table table-bordered table-condensed" >
<tbody>
<tr>
<td style="font-weight: bold; color: #000000;text-transform : uppercase;">Admission No</td>
<td>
<span id="Main__lblNo"><?php echo $login_session['RegNo']; ?></span></td>
</tr>
<tr>
<td style="font-weight: bold; color: #000000;">Names</td>
<td>
<span id="Main__lblNames"><?php echo $login_session['name']; ?> </span></td>
</tr>
<tr>
<td style="font-weight: bold; color: #000000;">ID/ Passport</td>
<td>
<span id="Main__lblIDNo"><?php echo $login_session['IdNo']; ?></span></td>
</tr>
<tr>
<td style="font-weight: bold; color: #000000;">Gender</td>
<td>
<span id="Main__lblGender"><?php echo $login_session['Gender']; ?></span></td>
</tr>
<tr>
<td style="font-weight: bold; color: #000000;">Date of Birth</td>
<td>
<span id="Main__lblDOB"><?php echo $login_session['Dob']; ?></span></td>
</tr>
<tr>
<td style="font-weight: bold; color: #000000;">County</td>
<td>
<span id="Main__lblCounty"><?php echo $login_session['County']; ?></span></td>
</tr>
<tr>
<td style="font-weight: bold; color: #000000;">Country</td>
<td>
<span id="Main__lblNationality"><?php echo $login_session['Country']; ?></span></td>
</tr>
<tr>
<td style="font-weight: bold; color: #000000;">Phone number</td>
<td>
<span id="Main__lblPhoneNo1"><?php echo $login_session['phoneNo']; ?></span></td>
</tr>
<tr style="display: none">
<td style="font-weight: bold; color: #000000;">Postal code</td>
<td>
<span id="Main__lblPostCode"></span></td>
</tr>
<tr>
<td style="font-weight: bold; color: #000000;">Email</td>
<td>
<span id="Main__lblEmail"><?php echo $login_session['email']; ?></span></td>
</tr>
<tr style="display: none">
<td style="font-weight: bold; color: #000000;">City</td>
<td>
<span id="Main__lblCity"></span></td>
</tr>
<tr>
<td style="font-weight: bold; color: #000000;">Postal Address</td>
<td>
<span id="Main__lblPostalAddress"><?php echo $login_session['address']; ?></span></td>
</tr>
<tr style="display: none">
<td style="font-weight: bold; color: #000000;">Fax Number</td>
<td>
<span id="Main__lblFaxNo"></span></td>
</tr>
<tr style="display: none">
<td style="font-weight: bold; color: #000000;">Home Address</td>
<td>
<span id="Main__lblHomeAddress1"></span></td>
</tr>
<tr style="display: none">
<td style="font-weight: bold; color: #000000;">Home page</td>
<td>
<span id="Main__lblHomePage"></span></td>
</tr>
</tbody>
</table>
</div>
</div>
<input type="submit" name="ctl00$Main_$Button1" value="Update information" id="Main__Button1" class="btn btn-warning" />
</div>
<div class="col-sm-6">
<div class="panel panel-success">
<div class="panel-heading"><i class="fa fa-envelope"></i>Notifications</div>
<div class="panel-body">
<marquee onmouseover="this.stop()" height="300px" onmouseout="this.start()" scrollamount="5" direction="up" scrolldelay="100">
<div class="notify-w3ls">
<div class="alert alert-info clearfix" >
<span class="alert-icon"><i class="fa fa-bell-o"></i></span>
<div class="notification-info">
<ul class="clearfix notification-meta">
<li class="pull-left notification-sender">
<span><a href="#"><img src="Images/NEW2.gif" />
<br /></a></span> </li>
<li class="pull-right notification-time"></li>
</ul>
<p>
</p>
</div>
</div>
</div>
</marquee>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- /. PAGE INNER -->
</div>
<!-- /. PAGE WRAPPER -->
</div>
<?php include('footer.php');?>