{% extends "shopyo_dashboard/dashboard_base.html" %} {% block title %}Sign In - {{OUR_APP_NAME}}{% endblock %} {% block content %}

{{OUR_APP_NAME}}

Sign in to your account

{{ form.email(class_="w-full px-4 py-3 rounded-xl border border-slate-200 dark:border-slate-700 bg-white dark:bg-slate-800 text-sm focus:ring-4 focus:ring-primary/10 focus:border-primary transition-all outline-none text-slate-900 dark:text-white") }} {% if form.email.errors %}
    {% for e in form.email.errors %}
  • {{ e }}
  • {% endfor %}
{% endif %}
{{ form.password(class_="w-full px-4 py-3 rounded-xl border border-slate-200 dark:border-slate-700 bg-white dark:bg-slate-800 text-sm focus:ring-4 focus:ring-primary/10 focus:border-primary transition-all outline-none text-slate-900 dark:text-white") }} {% if form.password.errors %}
    {% for e in form.password.errors %}
  • {{ e }}
  • {% endfor %}
{% endif %}

New here? Create an account

{% endblock %}