-
Notifications
You must be signed in to change notification settings - Fork 1
/
home.php
52 lines (49 loc) · 1.33 KB
/
home.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
<?php
session_start();
if(isset($_SESSION['email']))
{
include 'config.php';
include 'head.php';
?>
<div class="container-fluid">
<div class="panel">
<div class="panel panel-body">
<div class="jumbotron">
<h1>Welcome</h1>
<p>Please read the following</p>
<h3>Rules & instructions</h3>
<ul>
<li>No negative marking.
<li>Duration of test is 30 minutes only. Your time will start when you press below button.
<li>To submit the answer of any question press NEXT button only.
</ul>
<h3>Terms & Condition</h3>
<ul>
<li>Decision taken by the judge will be final
<li>Your entry can be canceled if we found any unethical activity
</ul>
<h3>Privacy Policy</h3>
<ul>
<li>Your information will be used for training and quality purpose
<li>Your information may get shared with 3rd party (outside the society) such as college administration, tech fest sponsors etc.
</ul>
<p>
<a class="btn btn-lg btn-primary" href="dashboard.php" role="button">I had readed it and agree it, Start the Test</a>
</p>
</div>
</div>
</div>
</div>
<?php include 'foot.php'; ?>
</body>
</html>
<?php
mysqli_close($connection);
}
else
{
echo"<script type='text/javascript'>
window.location.href='login.php';
</script>";
}
?>