-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathadminindex.php
31 lines (27 loc) · 1.03 KB
/
adminindex.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
<?php
include 'connect.php';
include 'head2.php';
?>
<html>
<head>
<link rel='stylesheet' href='index.css'>
<style > .table{ font-family: Montserrat, sans-serif;}
</style>
<title>BusGo</title>
</head>
<div><center><img src="https://img.icons8.com/bubbles/280/000000/admin-settings-male.png"/></div>
<br>
<br>
<body style="background-color: F5F1F0;">
<h1><center><b>Admin Sign In</center></b></h1>
<form method='post' action ='adminauthenticate.php' >
<div>
<table align="center" class="table">
<tr><td><h2><b>Email id : </b></h2></td> <td><input type="email" name="email" maxlength='50'></td></tr>
<tr><td><h2><b> Password : </b></h2></td> <td><input type="password" name="password" maxlength='50'></td></td></tr>
<tr><td colspan='2'><center><button type='Submit' style="background-color:black; border-color:black" name='login_submit' ><b>Sign in </b> </button></center></td></tr></table>
</table>
</form>
<center><h3><a href='sindex.php' style="color: black"><b>User Sign In ?</b></a></h3></center>
</body style="background-color: F5F1F0;">
</html>