-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathremove_user.php
More file actions
33 lines (32 loc) · 1.19 KB
/
Copy pathremove_user.php
File metadata and controls
33 lines (32 loc) · 1.19 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
<!DOCTYPE html>
<?php
session_start();
require('utils/php/user_check.php');
?>
<html>
<head>
<title>Remove Staff</title>
<script src="utils/js/validation.js"></script>
<link rel="stylesheet" type="text/css" href="utils/css/style.css">
<link rel="stylesheet" type="text/css" href="utils/css/responsive_style.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div id="navigation">
<div class="company_logo">
<img class="company_img" src="img/logo.png" height="110" width="200">
</div>
<ul class="inv_nav_left">
<li><a href="index.php">Home</a></li>
<li><?php echo $loggedIn; ?></li>
<li><?php echo $admin; ?></li>
</ul>
</div>
<div id="form">
<form name="deleteForm" action="utils/php/user_database.php" method="POST" onsubmit="return validateDelete()">
<input class="field" type="text" name="removeName" placeholder="Username"><br />
<input class="button" type="submit" value="Confirm">
</form>
</div>
</body>
</html>