-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
74 lines (57 loc) · 1.54 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
72
73
74
<?php
$path = $_SERVER['DOCUMENT_ROOT'];
$path .= "header.php";
include_once("header.php");
?>
<html>
<head>
<style>
body {
background-image: url();
background-color: white;
}
</body>
</style>
</head>
<body>
<nav class="navbar navbar-default navbar-static-top">
<div class="container">
<h3>SCHEDULING SYSTEM</h3>
</div>
</nav>
<div class="content">
<div class="form">
<form class="form-horizontal" method="post" action="login.php">
<fieldset>
<legend>Login Panel</legend>
<br><div class="form-group">
<label class="col-md-4 control-label" for="username">Username</label>
<div class="col-md-5">
<input id="username" name="username" type="text" placeholder="" class="form-control input-md" required="">
</div>
</div>
<div class="form-group">
<label class="col-md-4 control-label" for="password">Password</label>
<div class="col-md-5">
<input id="password" name="password" type="password" placeholder="" class="form-control input-md" required="">
</div>
</div>
<div class="form-group" align="right">
<label class="col-md-4 control-label" for="login"></label>
<div class="col-md-5">
<input type="submit" name="lgn" class="btn btn-success " value="Login">
</div>
</div>
</fieldset>
</form>
</div>
<br><font color="grey">Don't have an acount?</font> <a href="Register.php">Register here </a>
</div>
</div>
</body>
</html>
<?php
$path = $_SERVER['DOCUMENT_ROOT'];
$path .= "footer.php";
include_once("footer.php");
?>