Skip to content
Snippets Groups Projects
Commit 21f1347a authored by ynerant's avatar ynerant
Browse files

🐛 Fix signup

parent af857d6f
3 merge requests!104Beta,!98Morefront,!91Documents
Pipeline #8342 canceled with stages
......@@ -39,7 +39,7 @@ class UserCreateView(CreateView):
def get_context_data(self, **kwargs):
context = super().get_context_data(**kwargs)
context["profile_form"] = self.second_form()
context["profile_form"] = self.second_form(self.request.POST)
del context["profile_form"].fields["section"]
return context
......
{% extends "base.html" %}
{% load i18n %}
{% block content %}
<h2>{% trans "Account activation" %}</h2>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment