-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathteacher.php
50 lines (42 loc) · 1.44 KB
/
teacher.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
<?php
define('BASEPATH', true);
session_start();
require('backend/config/db.php');
if(!isset($_SESSION["user"])) {
header("Location: login.php");
exit();
}
?>
<!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.0">
<title>Teacher Dashboard</title>
<link rel="preload" href="styles/FontAwesome/css/all.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<link rel="stylesheet" href="styles/dashboard/all.css">
<link rel="stylesheet" href="styles/dashboard/teacher.css">
</head>
<body>
<?php include './important/rightbar.php'; ?>
<?php include './important/sidebar.php'; ?>
<!-- stats -->
<div class="all-students-stats">
<div class="all-students-stats-content">
<div class="all-students-stats-circle">
<div class="all-students-stats-circle-content">
<div class="all-students-stats-content-icon">
<i class="fas fa-user-graduate fa-2xl"></i>
</div>
</div>
<div class="all-students-stats-content-text">
<h1 class="students-title">Elevi</h1>
<h2 class="students-number">100</h2>
</div>
</div>
</div>
</div>
</div>
</body>
</html>