2025-05-03 11:56:27 -04:00
|
|
|
{% extends "layout.html" %}
|
2024-05-11 14:10:49 -04:00
|
|
|
|
2025-05-03 11:56:27 -04:00
|
|
|
{% block title %}Kawari - Register{% endblock %}
|
|
|
|
|
|
|
|
{% block body %}
|
2025-04-05 22:40:44 -04:00
|
|
|
<form action='/oauth/oa/registlist' method='post'>
|
2024-05-11 14:10:49 -04:00
|
|
|
<label for="username">Username:</label><br>
|
|
|
|
<input type='text' id='username' name='username'/><br>
|
|
|
|
<label for="password">Password:</label><br>
|
|
|
|
<input type='text' id='password' name='password'/><br>
|
|
|
|
<button type='submit'>Register</button>
|
|
|
|
</form>
|
2025-05-03 11:56:27 -04:00
|
|
|
{% endblock %}
|