forked from AaravRajSIngh/Chatbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
admin.php
63 lines (42 loc) · 1.26 KB
/
admin.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
<?php
session_start();
require 'dbconfig/config.php';
?>
<!DOCTYPE html>
<html>
<head>
<title>Login as Admin</title>
<link rel="stylesheet" href="css/stylex.css">
<style>
body
{
background-image: url('https://png.pngtree.com/thumb_back/fw800/background/20190223/ourmid/pngtree-smart-robot-arm-advertising-background-backgroundrobotblue-backgrounddark-backgroundlightlight-image_68405.jpg' );
background-repeat: no-repeat;
background-attachment: fixed;
background-size: 100% 100%;
}
</style>
</head>
<br>
<br>
<br>
<br>
<br>
<br>
<!-- <body style="background-color:#bdc3c7"> -->
<div id="main-wrapper">
<center>
<div class="imgcontainer">
<img src="image/admin.png" class="avatar"/>
</center>
<form class="myform" action="adminpage.php" method="post">
<div class="inner_container">
<label><b id="adminp">Password:</b></label><br>
<input name="password" type="password" class="inputvalues" id="adminpass" placeholder="Type your password" required/><br>
<a href="adminlogin.php"><input type="button" id="admin_btn" value="LogIn"/></a><br>
<a href="index.php"><input type="button" id="back_btn" value="Back"/></a>
</div>
</form>
</div>
</body>
</html>