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

Create Account

Make your app management easy and fun!

{{ 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", placeholder="Email") }} {% 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", placeholder="Password") }} {% if form.password.errors %}
    {% for e in form.password.errors %}
  • {{ e }}
  • {% endfor %}
{% endif %}
{{ form.confirm(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", placeholder="Confirm Password") }} {% if form.confirm.errors %}
    {% for e in form.confirm.errors %}
  • {{ e }}
  • {% endfor %}
{% endif %}

Already have an account? Sign in

{% endblock %}