-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.php
41 lines (33 loc) · 1.46 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
<?php include 'inc/header.php'; ?>
<?php
Session::checkLogin();
?>
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h1 class="mt-5">An Online Exam System</h1>
<p class="lead">Complete MCQ Based Online Exam System! <strong>Register now</strong> to start taking exam</p>
<img src="img/test.png"/>
</div>
<div class="col-lg-12">
<form action="index.php" method="post">
<div class="form-group">
<label for="exampleInputEmail1">Email address</label>
<input type="email" class="form-control" id="email" name="email" placeholder="Enter email">
<small id="emailHelp" class="form-text text-muted">We'll never share your email with anyone else.</small>
</div>
<div class="form-group">
<label for="exampleInputPassword1">Password</label>
<input type="password" name="password" id="password" class="form-control" placeholder="Password">
</div>
<button type="submit" id="loginsubm" value="Signup" class="btn btn-primary">Submit</button>
</form>
<br/>
<p><a class="btn btn-outline-success btn-lg" href="register.php">New User? Signup for Free</a></p>
<span class="empty" style="display: none;">Fields must not be empty</span>
<span class="disable" style="display: none;">User ID Disable!</span>
<span class="error" style="display: none;">Email or Password did not match.</span>
</div>
</div>
</div>
<?php include 'inc/footer.php'; ?>