aboutsummaryrefslogtreecommitdiff
path: root/views/newlist/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'views/newlist/index.php')
-rw-r--r--views/newlist/index.php28
1 files changed, 28 insertions, 0 deletions
diff --git a/views/newlist/index.php b/views/newlist/index.php
new file mode 100644
index 0000000..289c9da
--- /dev/null
+++ b/views/newlist/index.php
@@ -0,0 +1,28 @@
+<script type="text/javascript">
+ if (!sessionStorage.getItem('token')) {
+ window.location.href = '/login';
+ }
+</script>
+
+<h1>Create a new list</h1>
+
+<hr class="new-section"/>
+
+<form action="#" method="POST">
+ <?php if (isset($list_status)): ?>
+ <?php if ($list_status !== ""): ?>
+ <p class="item error"><span>
+ <strong>Error:</strong> <?= $list_status ?>
+ </span></p>
+ <?php endif; ?>
+ <?php endif; ?>
+
+ <input type="text" name="name" placeholder="List title" minlength="1">
+ <textarea name="description" placeholder="Description"></textarea>
+ <input id="token" type="hidden" name="token" value="">
+ <input type="submit" value="Login">
+</form>
+<script type="text/javascript">
+ const tokenInput = document.getElementById('token');
+ tokenInput.value = sessionStorage.getItem('token');
+</script>