Compare commits

..

2 commits

Author SHA1 Message Date
nyx
38bfadc46b actually make the ask part a form 2025-03-15 00:55:25 -05:00
nyx
b56e7d23b4 better formatting 2025-03-15 00:54:37 -05:00
3 changed files with 9 additions and 12 deletions

View file

@ -11,16 +11,13 @@
<h1> <h1>
Hi from {{ instanceLocation }}'s Nyxask! Hi from {{ instanceLocation }}'s Nyxask!
</h1> </h1>
<label for="name">Name (optional):</label> <form method="POST">
<input <input type="text" name="name" size="10" placeholder="name (optional)" />
type="text"
id="name"
name="name"
size="10" />
<br> <br>
<br> <br>
<label for="question">Question:</label> <textarea id="question" name="question" placeholder="question" required></textarea>
<textarea id="question" name="question"></textarea> <button type="submit">send</button>
</form>
</div> </div>
</body> </body>
</html> </html>

View file

@ -12,7 +12,7 @@
Login to {{ instanceLocation }}'s Nyxask! Login to {{ instanceLocation }}'s Nyxask!
</h1> </h1>
<form method="POST"> <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> <input type="password" name="password" placeholder="password" required>
<button type="submit">login</button> <button type="submit">login</button>
</form> </form>

View file

@ -12,7 +12,7 @@
Register at {{ instanceLocation }} Register at {{ instanceLocation }}
</h1> </h1>
<form method="POST"> <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> <input type="password" name="password" placeholder="password" required>
<button type="submit">register</button> <button type="submit">register</button>
</form> </form>