tmtd/templates/site/login/register.html
2022-05-23 16:45:46 +02:00

17 lines
468 B
HTML

{% extends "base.html" %}
{% block content %}
{% include "navbar.html" %}
<form action="/api/register" method="post">
<label for="Username">Username</label><br>
<input type="text" id="username" name="username" style="width:fit-content"><br>
<label for="Password">Password</label><br>
<input type="password" id="password" name="password" style="width:fit-content"><br>
<input type="submit" value="Register"><br>
</form>
{% endblock content %}