2025-05-03 12:40:11 -04:00
|
|
|
{% extends "login_base.html" %}
|
2024-05-11 14:10:49 -04:00
|
|
|
|
2025-05-03 11:56:27 -04:00
|
|
|
{% block title %}Kawari - Login{% endblock %}
|
|
|
|
|
2025-05-03 12:40:11 -04:00
|
|
|
{% block loginbody %}
|
2024-05-11 14:10:49 -04:00
|
|
|
<form method='post'>
|
2025-05-03 12:40:11 -04:00
|
|
|
<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">Login</button>
|
2024-05-11 14:10:49 -04:00
|
|
|
</form>
|
|
|
|
|
2025-05-03 11:56:27 -04:00
|
|
|
{% endblock %}
|