-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
119 lines (98 loc) · 4.7 KB
/
index.php
File metadata and controls
119 lines (98 loc) · 4.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
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html lang="en">
<head>
<title>--Select Semester</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimal-ui">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="description" content="#">
<meta name="keywords"
content="#">
<meta name="author" content="Somade Daniel">
<link rel="icon" href="files/assets/images/favicon.ico" type="image/x-icon">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,600,800" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="files/bower_components/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="files/assets/icon/themify-icons/themify-icons.css">
<link rel="stylesheet" type="text/css" href="files/assets/icon/icofont/css/icofont.css">
<link rel="stylesheet" type="text/css" href="files/assets/css/style.css">
</head>
<body class="fix-menu">
<div class="theme-loader">
<div class="ball-scale">
<div class='contain'>
<div class="ring">
<div class="frame"></div>
</div>
<div class="ring">
<div class="frame"></div>
</div>
<div class="ring">
<div class="frame"></div>
</div>
<div class="ring">
<div class="frame"></div>
</div>
<div class="ring">
<div class="frame"></div>
</div>
<div class="ring">
<div class="frame"></div>
</div>
<div class="ring">
<div class="frame"></div>
</div>
<div class="ring">
<div class="frame"></div>
</div>
<div class="ring">
<div class="frame"></div>
</div>
<div class="ring">
<div class="frame"></div>
</div>
</div>
</div>
</div>
<section class="login-block">
<div class="container">
<div class="row">
<div class="col-sm-12">
<form class="md-float-material form-material" method="post" action="actions/process_select_semester.php">
<div class="text-center">
</div>
<div class="auth-box card">
<div class="card-block">
<div class="row m-b-20">
<div class="col-md-12">
<h3 class="text-center">Sign In</h3>
</div>
</div>
<h5 style="color: red; margin-top: -20px; margin-bottom: 10px;"><i><?php if(isset($_GET['err']))echo$_GET['err'];?></i></h5>
<div class="form-group form-primary">
<select class="form-control" name='select_semester'>
<option value="0">-- Select --</option>
<option value='pt_2021_first'>PT 2021, First Semester</option>
<option value='pt_2021_second'>PT 2021, Seconder Semester</option>
</select>
</div>
<div class="row m-t-30">
<div class="col-md-12">
<input type="submit" value="submit" class="btn btn-primary">
</div>
</div>
<hr />
<div class="row">
<div class="col-md-10">
<p class="text-inverse text-left m-b-0"><b>Developed By: Somade Daniel O.</b></p>
<p class="text-inverse text-left m-b-0"><b>Matric NO: 18010211020</b></p>
<p class="text-inverse text-left m-b-0"><b>Supervisor: Mr I.B.Sadiku</b></p>
<p class="text-inverse text-left m-b-0"><b>Guide: Engr Awolere Adeleke</b></p>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
</section>
<?php include'footer.php'; ?>