-
Notifications
You must be signed in to change notification settings - Fork 0
/
modules.php
70 lines (55 loc) · 1.74 KB
/
modules.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>Erdos</title>
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link rel='shortcut icon' type='image/x-icon' href='img/favicon.ico' />
<!--JQuery-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.2/jquery.min.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="js/bootstrap.min.js"></script>
<!--Google font-->
<link href='https://fonts.googleapis.com/css?family=Montserrat:400,900' rel='stylesheet' type='text/css'>
<link href="css/modules.css" rel="stylesheet">
<script language="Javascript">
$(document).ready(function(){
$(".one").click(function() {
window.location = "index.php";
return false;
});
});
</script>
</head>
<body>
<?php include('navbar.php'); ?>
<?php include_once("analyticstracking.php") ?>
<?php include_once("session_handler.php") ?>
<div class="container">
<div class="container-bin">
<div class="module-header">
<h4>Modules</h4>
</div>
<div class="module-main">
<div class="row">
<div class="module-link one">
<span style="font-size:22px;" class="glyphicon glyphicon-play-circle" aria-hidden="true"></span>
<div class="module-desc"><h5>Review problem set 1</h5></div>
</div>
<!--
<div class="module-link one">
<span style="font-size:22px;" class="glyphicon glyphicon-play-circle" aria-hidden="true"></span>
<div class="module-desc"><h5>Easy review</h5></div>
</div>
-->
</div>
</div>
</div>
</div>
</body>
</html>