-
Notifications
You must be signed in to change notification settings - Fork 0
/
admin.html
34 lines (31 loc) · 893 Bytes
/
admin.html
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
<!DOCTYPE html>
<html>
<head>
<title>ADMIN</title>
<link rel= "stylesheet" href="adminstyle.css">
</head>
<style>
body
{
background-size: cover ;
background-repeat: no-repeat;
}
</style>
<body background="bg.jpeg">
<div class="container">
<div class="myform">
<form action="operations.PHP">
<h2>
ADMIN LOGIN
</h2>
<input type="text" placeholder="Admin name" name="admin" required>
<input type="text" placeholder="password" name="pwd" required>
<button type="submit">LOGIN</button>
</form>
</div>
<div class="image">
<img src="image.jpg" width="300px">
</div>
</div>
</body>
</html>