-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
59 lines (44 loc) · 1.55 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
<?php
session_start();
?>
<!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">
<title>StudentProKit</title>
<link href="assets/css/bootstrap.css" rel="stylesheet">
<link href="assets/css/style.css" rel="stylesheet">
</head>
<body>
<?php include('includes/header.php');?>
<div class="container">
<h1 style="text-align: center; color:white;">Welcome</h1>
<div class="b1">
<button type="button" class="btn btn-outline-light btn-lg"
onclick="window.location.href='signup.php'">
SignUp</button>
</div>
<div class="context">
<div class="b2">
<button type="button" class="btn btn-outline-light btn-lg"
onclick="window.location.href='login.php'">
LogIn
</button>
</div>&ncsp;
<div class="alert alert-primary" role="alert">
<h4 class="alert-heading">Hey,</h4>
<p style="text-align: center;"> <b>"No one is perfect in this world and nothing is eternally best. But we can
try to be better. I hope it will help you a lot."</b></p>
<hr>
<p class="mb-0"> Hi, I have developed this site so that students may learn web developing easily.I'm committed
to provide easy leraning on various web technologies.more Coding.</p>
</div>
</div>
</div>
<?php include('includes/footer.php');?>
<script src="js/bootstrap.js"></script>
<script src="js/jquery.js"></script>
</body>
</html>