-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
71 lines (58 loc) · 2.16 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
<?php
$dashboard_status = "active";
?>
<!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">
<?php include("lender/head.php"); ?>
<link rel="stylesheet" href="assets/css/landing.css">
<script src="assets/js/landing.js"></script>
<title>Result Management System</title>
</head>
<body style="background: #9234eb;">
<!--Container Main start-->
<div class="container">
<div class="col-lg-9 col-md-12 col-sm-12 m-auto mt-5">
<div class="card p-4 pt-5 bg-light">
<div class="row">
<div class="col-lg-6">
<div class="">
<div class="image col-lg-12 text-center">
<img src="https://www.drukjeganghss.bt/assets/img/logo.png" alt="" width="100" height="100">
</div>
<br>
<h6 class="text-uppercase text-center">Drukjegang Higher Secondary School</h6>
<h6 class="text-uppercase text-center">Online Result</h6>
<hr>
<p class="text-center">
"Inspire Students to Impact the Community"
</p>
<div class="card-body">
</div>
</div>
</div>
<div class="col-lg-6 text-center mt-4">
<h4> </h4>
<br>
<div class="col-lg-7 m-auto">
<a href="retrieve_result.php" class="btn btn-info text-white form-control p-3">Student</a>
</div>
<br>
<div class="col-lg-7 m-auto">
<a href="admin_login.php" class="btn btn-primary form-control p-3">Teacher/Admin</a>
</div>
</div>
<hr>
<div class="text-center">
<a href="https://www.drukjeganghss.bt/" class="nav-link">www.drukjeganghss.bt</a>
</div>
</div>
</div>
</div>
</div>
<!--Container Main end-->
</body>
</html>