17 lines
768 B
HTML
17 lines
768 B
HTML
{% extends 'base.html' %}
|
|
{% block content %}
|
|
<h1 style="text-decoration: underline;">Sign up to make a account</h1>
|
|
<form action="/submit-form" method="POST" class="signup">
|
|
<label for="username">Username:</label>
|
|
<input type="text" id="username" name="username" required><br><br>
|
|
|
|
<label for="email">Email:</label>
|
|
<input type="email" id="email" name="email" required><br><br>
|
|
|
|
<label for="password">Password:</label>
|
|
<input type="password" id="password" name="password" required><br><br>
|
|
|
|
<button type="submit" class="submitbutton" style="font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; border-color: gray; border-radius: 4px; border-width: 4px;">Create account</button>
|
|
</form>
|
|
|
|
{% endblock %} |