aboutsummaryrefslogtreecommitdiff
path: root/views/test/index.php
diff options
context:
space:
mode:
authorSyndamia <kamen@syndamia.com>2025-01-18 20:42:06 +0200
committerKamen Mladenov <kamen@syndamia.com>2025-01-19 07:46:17 +0200
commitcbca98e5501410dea58421a7517e3de856ae0110 (patch)
tree6f7a30c0e38633d54498dfd0171173819698fd35 /views/test/index.php
parent6aaa4ff113c9a5ca9c022d8fa39a43ffca288948 (diff)
downloadnowayforward_human-cbca98e5501410dea58421a7517e3de856ae0110.tar
nowayforward_human-cbca98e5501410dea58421a7517e3de856ae0110.tar.gz
nowayforward_human-cbca98e5501410dea58421a7517e3de856ae0110.zip
feat(views): Add two test views
Diffstat (limited to 'views/test/index.php')
-rw-r--r--views/test/index.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/views/test/index.php b/views/test/index.php
new file mode 100644
index 0000000..e0b7eb6
--- /dev/null
+++ b/views/test/index.php
@@ -0,0 +1,11 @@
+<?php
+ include '../meta.php';
+ print_r(Database\User::get_all());
+?>
+
+<form action="/test1/index.php" method="POST">
+ <input type="text" name="Username" placeholder="Username">
+ <input type="submit">
+</form>
+
+<?php end_page(); ?>