Compare commits

..

No commits in common. "38bfadc46b46bb2397f676ab9abcfe345913724e" and "e1fc1f7edf4a6b76e069bb8060cf9e3a0d68a865" have entirely different histories.

3 changed files with 12 additions and 9 deletions

View file

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

View file

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

View file

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