-
Notifications
You must be signed in to change notification settings - Fork 18
/
index.php
62 lines (48 loc) · 3.17 KB
/
index.php
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
<?php session_start(); ?>
<?php include ('includes/header.php'); ?>
<?php if (isset($_SESSION['id'])) {
header("location: instruction.php");
} ?>
<?php // include_once ('includes/display_error.php'); ?>
<title>Exam Login page</title>
<link rel="stylesheet" href="css/indexstyle.css">
<body>
<div class="container-page">
<?php // include_once ('includes/script.php'); ?>
<div class="container">
<div class="row">
<div class="col-lg-6 offset-lg-5 col-md-6 offset-md-4 col-sm-4 offset-sm-3">
<div class="content-header">
<img src="images/tri_icon-02.png" alt="Brand" class="img-fluid" width="150" height="200" >
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6 offset-lg-3 col-md-8 offset-md-2 col-sm-11 col-xs-12">
<h4 class="text-center text-danger" id="error-message">Please check your email / Reg number or Matric number and try again</h4>
<h4 class="text-center text-danger" id="empty_notice"><span>Please Fill Required Fields</span></h4>
<div class="wrap-content">
<form action="" id="loginForm" method="post" enctype="multipart/form-data">
<br/>
<center><h3>Login to Examination Portal</h3> </center>
<div class="input-group mb-3 mt-3" >
<div class="input-group-prepend" >
<span class="input-group-text" id="basic-addon1" style="background-color: #94CDC5;"><i class="fa fa-user" style="color: #8A82A8;"></i></span>
</div>
<input type="text" id="regNumber" class="form-control" placeholder="Registration Number">
</div>
<center>
<button type="button" class="btn btn-success btn-submit" id="login">LOGIN</button>
</center>
</form>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6 offset-lg-3 col-md-8 offset-md-2 col-sm-11 col-xs-12">
<center><p> <?php echo date("Y");?> ©Copyright Trisight Technology</p></center>
</div>
</div>
</div>
</div>
<?php include ('includes/footer.php'); ?>