Skip to content

Commit

Permalink
Fixed retention of username/password (#2958)
Browse files Browse the repository at this point in the history
* Fixed retention of username/password

* resetted previous commits

* corrected changes

---------

Co-authored-by: DonnieBLT <[email protected]>
  • Loading branch information
tsu-ki and DonnieBLT authored Nov 24, 2024
1 parent 51d02cd commit 9a43b69
Showing 1 changed file with 4 additions and 0 deletions.
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

0 comments on commit 9a43b69

Please sign in to comment.