{% extends "base.html" %} {% import "components/macros.html" as ui %} {% block title %}Sign In - Stick{% endblock %} {% block content %}

Welcome Back

Sign in to manage your tasks

{% if let Some(err) = error %}
{{ err }}
{% endif %}
{{ ui::text_input(id="username", name="username", label="Username", type="text", placeholder="Enter username", required=true) }} {{ ui::text_input(id="password", name="password", label="Password", type="password", placeholder="••••••••", required=true) }}
{{ ui::button(label="Sign In", variant="indigo", type="submit", extra_class="w-full py-3.5 shadow-lg shadow-sky-500/10") }}
Don't have an account? Sign up now
{% endblock %}