1
Fork 0
mirror of https://github.com/redstrate/Kawari.git synced 2025-05-12 14:47:46 +00:00
kawari/resources/templates/register.html
Joshua Goins 85a2abb49e Add a warning to not enter your real account's credentials
I added a warning to the bottom of the login pages everywhere to make
sure users do not try to enter their real account credentials.
2025-05-03 20:46:50 -04:00

16 lines
626 B
HTML

{% extends "login_base.html" %}
{% block title %}Kawari - Register{% endblock %}
{% block loginbody %}
<form action='/oauth/oa/registlist' method='post' class="mb-3">
<label for="username" class="form-label">Username:</label><br>
<input type='text' id='username' name='username' class="form-control"/><br>
<label for="password" class="form-label">Password:</label><br>
<input id='password' name='password' class="form-control" type="password"/><br>
<button type='submit' class="btn btn-primary">Register</button>
</form>
<p><small>This is not an official registration page.</small></p>
{% endblock %}