aboutsummaryrefslogtreecommitdiff
path: root/views/test/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'views/test/index.php')
-rw-r--r--views/test/index.php21
1 files changed, 0 insertions, 21 deletions
diff --git a/views/test/index.php b/views/test/index.php
deleted file mode 100644
index bce8371..0000000
--- a/views/test/index.php
+++ /dev/null
@@ -1,21 +0,0 @@
-<?php
- $title = 'Test page';
- include '../meta.php';
-?>
-
-<form action="/test1/index.php" method="POST">
- <input type="text" name="Username" placeholder="Username">
- <input type="submit">
-</form>
-
-<?php foreach(Database\User::get_all() as $user):?>
- <section class="card">
- <section class="quickinfo">
- <?php print_r($user); ?>
- </section>
- <strong><?= $user->Username ?></strong>
- <em><?= $user->Role ?></em>
- </section>
-<?php endforeach;?>
-
-<?php end_page(); ?>