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

Create an account

Enter your email below to create your account

{% csrf_token %}
{% if form.non_field_errors %}
{{ form.non_field_errors.0 }}
{% endif %}
{% include "components/ui/form/input.html" with field=form.email placeholder="name@example.com" %}
{% include "components/ui/form/input.html" with field=form.username placeholder="username" %}
{% include "components/ui/form/input.html" with field=form.password type="password" %}
{% include "components/ui/form/input.html" with field=form.password_confirm type="password" %}
{% include "components/ui/button.html" with type="submit" label="Sign Up" 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" %}
Already have an account? Sign in
{% endblock %}