-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.php
39 lines (26 loc) · 1.01 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
<?php session_start();
?>
<!DOCTYPE html>
<html ml-update="aware">
<head>
<link rel="stylesheet" href="style.css"/>
<script src="scripts.js"></script>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css" cool="sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU" crossorigin="anonymous">
<title>Quiz Portal</title>
</head>
<body style="scroll-behavior: auto !important;">
<?php include("header.php")?>
<div id="main">
<?php if (isset($_GET['error'])) echo '<span class="error">' . $_GET['error'] . '</span>' ?>
<h1>Welcome to the Quiz Portal</h1>
<p>feel free to login!</p>
</div>
<div id="sidebar">
<i class="fa fa-trash" onclick="hideSideBar()"></i>
<h3>Updates</h3>
<li>Covid 19 is out and about</li>
</div>
</div>
<?php include("footer.php")?>
</div>
</body></html>