Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed retention of username/password #2958

Merged
merged 5 commits into from
Nov 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions website/templates/account/signup.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ <h3 class="my-4 text-2xl font-semibold text-gray-700">{% trans "Account SignUp"
type="text"
id="id_username"
name="username"
value="{{ form.username.value|default:'' }}"
class="px-4 py-2 w-[100%] h-[28px] transition duration-300 border border-gray-300 rounded focus:border-transparent focus:outline-none focus:ring-4 focus:ring-red-200" />
<span class="help-block">{{ form.username.errors }}</span>
</div>
Expand All @@ -40,6 +41,7 @@ <h3 class="my-4 text-2xl font-semibold text-gray-700">{% trans "Account SignUp"
<input type="email"
id="id_email"
name="email"
value="{{ form.email.value|default:'' }}"
class="px-4 py-2 w-[100%] h-[28px] transition duration-300 border border-gray-300 rounded focus:border-transparent focus:outline-none focus:ring-4 focus:ring-red-200" />
<span class="help-block">{{ form.email.errors }}</span>
</div>
Expand All @@ -50,6 +52,7 @@ <h3 class="my-4 text-2xl font-semibold text-gray-700">{% trans "Account SignUp"
<input type="password"
id="id_password"
name="password1"
value="{{ form.password1.value|default:'' }}"
class="px-4 py-2 w-[100%] h-[28px] transition duration-300 border border-gray-300 rounded focus:border-transparent focus:outline-none focus:ring-4 focus:ring-red-200" />
<span class="help-block">{{ form.password1.errors }}</span>
</div>
Expand All @@ -60,6 +63,7 @@ <h3 class="my-4 text-2xl font-semibold text-gray-700">{% trans "Account SignUp"
<input type="password"
id="id_password2"
name="password2"
value="{{ form.password2.value|default:'' }}"
class="px-4 py-2 w-[100%] h-[28px] transition duration-300 border border-gray-300 rounded focus:border-transparent focus:outline-none focus:ring-4 focus:ring-red-200" />
<span class="help-block">{{ form.password2.errors }}</span>
</div>
Expand Down
Loading