{% extends "components/ui/dialog.html" %} {% block dialog_content %}

Welcome back

Enter your credentials to sign in to your account

{% csrf_token %}
{% if form.non_field_errors %}
{{ form.non_field_errors.0 }}
{% endif %}
{% include "components/ui/form/input.html" with field=form.login placeholder="name@example.com" %}
{% include "components/ui/form/input.html" with field=form.password type="password" %}
{% if form.remember %}
{% include "components/ui/form/checkbox.html" with field=form.remember label="Remember me" %}
{% endif %}
{% include "components/ui/button.html" with type="submit" label="Sign In" class="w-full" %}
Or continue with
{% include "components/ui/button.html" with variant="outline" icon='' label="Github" %} {% include "components/ui/button.html" with variant="outline" icon='' label="Google" %}
Don't have an account? Sign up
{% endblock %}