From 38bfadc46b46bb2397f676ab9abcfe345913724e Mon Sep 17 00:00:00 2001 From: nyx <me@everypizza.im> Date: Sat, 15 Mar 2025 00:55:25 -0500 Subject: [PATCH] actually make the ask part a form --- app/templates/index.j2 | 1 + app/templates/register.j2 | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/app/templates/index.j2 b/app/templates/index.j2 index 1f23443..e56df94 100644 --- a/app/templates/index.j2 +++ b/app/templates/index.j2 @@ -16,6 +16,7 @@ <br> <br> <textarea id="question" name="question" placeholder="question" required></textarea> + <button type="submit">send</button> </form> </div> </body> diff --git a/app/templates/register.j2 b/app/templates/register.j2 index c4174e3..453e4ae 100644 --- a/app/templates/register.j2 +++ b/app/templates/register.j2 @@ -12,7 +12,7 @@ Register at {{ instanceLocation }} </h1> <form method="POST"> - <input type="text" name="username" placeholder="username" required> + <input type="text" name="username" placeholder="username" required><br> <input type="password" name="password" placeholder="password" required> <button type="submit">register</button> </form>