This repository has been archived by the owner on Jun 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.php
71 lines (61 loc) · 3.27 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
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="description" content="">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>O6U ONLINE EXAM SYSTEM</title>
<link rel="icon" href="favicon.ico">
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="stylesheet" href="style/css/style.css">
</head>
<body>
<div class="preloader"></div>
<nav class="navbar navbar-expand-lg navbar-light bg-light fixed-top">
<a class="navbar-brand"><img src="style/images/csis.png" class="logo">Online Exam System</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="instructor">Instructor Login <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="student">Student Login</a>
</li>
<li class="nav-item">
<a class="nav-link" href="docs">Docs</a>
</li>
</ul>
</div>
</nav>
<!-- end Navbar -->
<!-- start header -->
<header id="home" class="block">
<div class="header-overlay d-flex align-items-center">
<div class="container">
<div class="header-title d-flex justify-content-center">
<div>
<h1 class="text-white">O6U ONLINE EXAM SYSTEM</h1>
<div class="d-flex justify-content-center">
<a class="btn btn-success text-white title-link mt-2" style="margin-right:20px" href="student">I'm Student</a>
<a class="btn btn-primary text-white title-link mt-2" href="instructor">I'm Instructor</a>
</div>
</div>
</div>
</div>
</div>
</header>
<script src="https://code.jquery.com/jquery-2.2.4.min.js" integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" crossorigin="anonymous"></script>
<script src="https://unpkg.com/@popperjs/core@2"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-backstretch/2.1.18/jquery.backstretch.min.js" integrity="sha256-OZZMwc3o7txR3vFfunl0M9yk3SayGp444eZdL9QDi1Y=" crossorigin="anonymous"></script> <script type="text/javascript">
jQuery(document).ready(function(){
$.backstretch("https://i.imgur.com/qnL1prM.jpg");
});
</script>
<script src="style/js/home.js"></script>
</body>
</html>