-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprocess.php
More file actions
23 lines (23 loc) · 799 Bytes
/
process.php
File metadata and controls
23 lines (23 loc) · 799 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<html>
<head>
<title>Admin</title>
<link rel="stylesheet" type="text/css" href="login.css">
<body>
<div class="loginbox" >
<img src="p2.png" class="avatar">
<form action="#" method="POST">
<h1>Action</h1>
<input type="submit" name="insert" value="INSERT" formaction="insert.php" />
<input type="submit" name="delete" value="DELETE" formaction="delete.php" />
<input type="submit" name="peek" value="PEEK" formaction="peek.php" />
<input type="submit" name="update" value="UPDATE" formaction="update.php" />
</form>
</div>
<div class = "logout">
<a href="login.php">
<img src="p3.png" alt="Logout" style="width:50px;height:42px;border:0;position: fixed;top: 8px;right: 16px;font-size: 18px;">
</a>
</div>
</body>
</head>
</html>