aboutsummaryrefslogtreecommitdiff
path: root/views/register/index.php
diff options
context:
space:
mode:
authorSyndamia <kamen@syndamia.com>2025-02-02 12:29:29 +0200
committerSyndamia <kamen@syndamia.com>2025-02-02 12:29:29 +0200
commit254e643a4f74a8b499093b303b831d80de5464ea (patch)
tree32e1bb071fcf47824334711904c6660ec069251a /views/register/index.php
parent0d5738a2bc9dd4f5edf582f7cea3614bcbb44842 (diff)
downloadnowayforward_human-254e643a4f74a8b499093b303b831d80de5464ea.tar
nowayforward_human-254e643a4f74a8b499093b303b831d80de5464ea.tar.gz
nowayforward_human-254e643a4f74a8b499093b303b831d80de5464ea.zip
feat(views): Move register to user/create
Diffstat (limited to 'views/register/index.php')
-rw-r--r--views/register/index.php21
1 files changed, 0 insertions, 21 deletions
diff --git a/views/register/index.php b/views/register/index.php
deleted file mode 100644
index 4bec861..0000000
--- a/views/register/index.php
+++ /dev/null
@@ -1,21 +0,0 @@
-<h1>Register</h1>
-
-<hr class="new-section"/>
-
-<form action="#" method="POST" class="font-115 flex-col-centered max-width-20 center-margin">
- <?php if (isset($user_status)): ?>
- <?php if ($user_status !== ""): ?>
- <p class="item error"><span>
- <strong>Error:</strong> <?= $user_status ?>
- </span></p>
- <?php else: ?>
- <p class="item success">
- Success!
- </p>
- <?php endif; ?>
- <?php endif; ?>
-
- <input type="text" name="username" placeholder="Username" minlength="1" pattern="[A-Za-z][A-Za-z_0-9]*">
- <input type="password" name="password" placeholder="Password" minlength="4">
- <input type="submit" value="Register">
-</form>