-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstartingPage.php
33 lines (26 loc) · 1.2 KB
/
startingPage.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
<?
include 'config.php';
?>
<!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">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-wEmeIV1mKuiNpC+IOBjI7aAzPcEZeedi5yW5f2yOq55WWLwNGmvvx4Um1vskeMj0" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="styleOthers.css">
<title>starting page</title>
</head>
<body>
<div class="text-center">
<h1 class="fw-bold display-1 ">WELCOME TO SCHOOL! </h1>
<h1 class=" fw-bold fs-1"> Are you a </h1>
</div>
<div class=" text-center ">
<a href="studentLogin.php"><button class="btn btn-primary" type="button">STUDENT</button></a>
<p class="fs-5">or</p>
<a href="teacherLogin.php"><button class="btn btn-primary" type="button">TEACHER</button></a>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-p34f1UUtsS3wqzfto5wAAmdvj+osOnFyQFpp4Ua3gs/ZVWx6oOypYoCJhGGScy+8" crossorigin="anonymous"></script>
</body>
</html>