-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin.php
58 lines (44 loc) · 1.13 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Homepage design with html abd css</title>
<link rel="stylesheet" href="style6.css">
</head>
<body>
<header>
<div class="wrapper">
<ul class="nav-area">
<li><a href="http://localhost/dbms/home.html">Home</a></li>
<li><a href="http://localhost/dbms/about.php">About</a></li>
<li><a href="http://localhost/dbms/admin.php">Admin</a></li>
<li><a href="http://localhost/dbms/custom.php">Customers</a></li>
<li><a href="http://localhost/dbms/news.php">News</a></li>
</ul>
</div>
<center><h2><br><br><br><br><br><br><br>ADMIN LOGIN </h2></br>
<form action="login_action.php" method="post">
<table align="center">
<tr>
<td>
<h3>User Name</h3>
<input type="text" name="user_name" placeholder="User Name"/>
</td>
</tr>
<tr>
<td>
<h3>Password</h3>
<input type="password" name="password" placeholder="Password"/>
</td>
</tr>
<tr>
<td>
<input type="submit" name="submit" value="LOGIN"/>
</td>
</tr>
</table>
</form>
</center>
</header>
</body>
</html>