-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.html
More file actions
79 lines (53 loc) · 1.92 KB
/
admin.html
File metadata and controls
79 lines (53 loc) · 1.92 KB
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
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="admin.css">
</head>
<body>
<div class="out1">
<div class="in1">
The Property Finder
</div>
<div class="out2">
<div class="in 2"><a href="http://127.0.0.1:5500/index.html" >HOME</a></div>
<div class="in 6">ABOUT US</div>
<div class="in 5"><a href="http://127.0.0.1:5500/contactus.html">CONTACT US</a></div>
<div class="in 7"><a href="http://127.0.0.1:5500/experience.html">FORM</a></div>
<div class="in 3"><a href="http://127.0.0.1:5500/login.html">USER LOGIN</a></div>
<div class="in 4"><a href="http://127.0.0.1:5500/admin.html" >ADMIN LOGIN</a></div>
</div>
<div class="outer">
<h1 id="head"> The Property Finder</h1>
<hr>
<form>
<div class="inner2">
ADMIN LOGIN PAGE
</div>
<div class="inner1">
<label id="s1h">Enter the User Name :
<input type="text" id="s1" placeholder="Enter the User Name "
required
name="Username">
</label>
</div>
<br>
<div class="inner1">
<label id="s1h">Enter the Password :
<input type="password" id="s1" placeholder="Enter the Password"
required name="password">
</label>
</div>
<br>
<button class="b1" type="submit">Submit</button>
<button class="b1" type="reset">Reset</button>
<br>
<div class="inner3">
Forgot Password?</div>
</div>
</form>
</div>
</body>
</html>