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 %}
2025-05-03 20:44:59 -04:00
< form method = 'post' class = "mb-3" >
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 20:44:59 -04:00
< p > < small > This is not an official login page. It will < i > not< / i > accept your official account's credentials, please do not enter them here!< / small > < / p >
2025-05-03 11:56:27 -04:00
{% endblock %}