forked from yeghiakoronian/BuyACar-Ecommerce-Web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
adminUser.php
22 lines (22 loc) · 1.07 KB
/
adminUser.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
include 'core/init.php';
admin_protect();
?>
<html>
<form name="form" method="POST" action="checkUsername.php" >
<p>Check user by username: <input type="text" name="username" id="username"><input type="submit" name="submit" id="submit" value="submit"><p>
</form>
<form name="form" method="POST" action="checkEmailuser.php" >
<p>Check user by email: <input type="text" name="email" id="email"><input type="submit" name="submit" id="submit" value="submit"><p>
</form>
<form name="form" method="POST" action="checkallusers.php" >
<input type="submit" name="submit" id="submit" value="Check All Users">
</form>
<form name="form" method="POST" action="deleteuserUsername.php" >
<p>Delete user by username: <input type="text" name="username" id="username"><input type="submit" name="submit" id="submit" value="submit"><p>
</form>
<form name="form" method="POST" action="restart.php" >
<p>Restart password for user by username: <input type="text" name="username" id="username"><input type="submit" name="submit" id="submit" value="submit"><p>
</form>
<a href="adminIndex.php">Back</a>
</html>