mirror of
https://github.com/redstrate/Kawari.git
synced 2025-05-07 13:07:45 +00:00
I haven't changed any of the content yet, only included the Boostrap CSS and unified their base template.
13 lines
428 B
HTML
13 lines
428 B
HTML
{% extends "layout.html" %}
|
|
|
|
{% block title %}Kawari - Register{% endblock %}
|
|
|
|
{% block body %}
|
|
<form action='/oauth/oa/registlist' method='post'>
|
|
<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>
|
|
{% endblock %}
|