2025-03-22 22:17:47 -04:00
|
|
|
{% extends "auth/base.html" %} {% block head %}
|
2025-03-21 01:38:07 -04:00
|
|
|
<title>🐐 Login</title>
|
|
|
|
{% endblock %} {% block title %}Login{% endblock %} {% block content %}
|
|
|
|
<form class="w-full flex flex-col gap-4">
|
|
|
|
<div class="flex flex-col gap-1">
|
|
|
|
<label for="username"><b>Username</b></label>
|
|
|
|
<input
|
|
|
|
type="text"
|
|
|
|
placeholder="username"
|
|
|
|
required
|
|
|
|
name="username"
|
|
|
|
id="username"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="flex flex-col gap-1">
|
|
|
|
<label for="username"><b>Password</b></label>
|
|
|
|
<input
|
|
|
|
type="password"
|
|
|
|
placeholder="password"
|
|
|
|
required
|
|
|
|
name="password"
|
|
|
|
id="password"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<button>Submit</button>
|
|
|
|
</form>
|
|
|
|
{% endblock %} {% block footer %}
|
|
|
|
<span class="small w-full text-center"
|
2025-03-22 22:17:47 -04:00
|
|
|
>Or, <a href="/auth/register">register</a></span
|
2025-03-21 01:38:07 -04:00
|
|
|
>
|
|
|
|
{% endblock %}
|