diff options
| author | Syndamia <kamen@syndamia.com> | 2025-02-02 16:00:41 +0200 |
|---|---|---|
| committer | Syndamia <kamen@syndamia.com> | 2025-02-02 16:00:41 +0200 |
| commit | e152b791f45b02c20b00e248f1502bc144e8a9a8 (patch) | |
| tree | 6e02239984eeaaf39b85759368b189d1801d98d4 /views/admin | |
| parent | e0fe3d0a5b6dd8bf4ba11eee10adfb6be3f5ab31 (diff) | |
| download | nowayforward_human-e152b791f45b02c20b00e248f1502bc144e8a9a8.tar nowayforward_human-e152b791f45b02c20b00e248f1502bc144e8a9a8.tar.gz nowayforward_human-e152b791f45b02c20b00e248f1502bc144e8a9a8.zip | |
feat(views/admin): Implement form for user deletion
Diffstat (limited to 'views/admin')
| -rw-r--r-- | views/admin/index.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/views/admin/index.php b/views/admin/index.php index 69495d6..750a246 100644 --- a/views/admin/index.php +++ b/views/admin/index.php @@ -28,6 +28,13 @@ <input type="submit" value="Modify"> </form> + <h2>Delete</h2> + + <form action="/user/delete" method="GET" class="font-115"> + <input type="text" name="username" placeholder="Username"> + <input type="submit" value="Delete"> + </form> + <?php else: ?> <h2>Permission denied, you're not an admin!</h2> |
