Skip to content

Instantly share code, notes, and snippets.

@FerranAD
Created April 12, 2022 15:05
Show Gist options
  • Save FerranAD/b3a4914cd00d10027b82aae3bff2ece5 to your computer and use it in GitHub Desktop.
Save FerranAD/b3a4914cd00d10027b82aae3bff2ece5 to your computer and use it in GitHub Desktop.
<tr>
<th><label for="id_username">Username:</label></th>
<td>
<input type="text" name="username" value="pablo" maxlength="150" autocapitalize="none" autocomplete="username" autofocus required id="id_username">
<br>
<span class="helptext">Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only.</span>
</td>
</tr>
<tr>
<th><label for="id_password1">Password:</label></th>
<td>
<ul class="errorlist"><li>This field is required.</li></ul>
<input type="password" name="password1" autocomplete="new-password" required id="id_password1">
<br>
<span class="helptext"><ul><li>Your password can’t be too similar to your other personal information.</li><li>Your password must contain at least 8 characters.</li><li>Your password can’t be a commonly used password.</li><li>Your password can’t be entirely numeric.</li></ul></span>
</td>
</tr>
<tr>
<th><label for="id_password2">Password confirmation:</label></th>
<td>
<ul class="errorlist"><li>This field is required.</li></ul>
<input type="password" name="password2" autocomplete="new-password" required id="id_password2">
<br>
<span class="helptext">Enter the same password as before, for verification.</span>
</td>
</tr>
The two password fields didn’t match.
[12/Apr/2022 15:03:26] "POST /register/ HTTP/1.1" 200 5843
<tr>
<th><label for="id_username">Username:</label></th>
<td>
<input type="text" name="username" value="pablo" maxlength="150" autocapitalize="none" autocomplete="username" autofocus required id="id_username">
<br>
<span class="helptext">Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only.</span>
</td>
</tr>
<tr>
<th><label for="id_password1">Password:</label></th>
<td>
<ul class="errorlist"><li>This field is required.</li></ul>
<input type="password" name="password1" autocomplete="new-password" required id="id_password1">
<br>
<span class="helptext"><ul><li>Your password can’t be too similar to your other personal information.</li><li>Your password must contain at least 8 characters.</li><li>Your password can’t be a commonly used password.</li><li>Your password can’t be entirely numeric.</li></ul></span>
</td>
</tr>
<tr>
<th><label for="id_password2">Password confirmation:</label></th>
<td>
<ul class="errorlist"><li>This field is required.</li></ul>
<input type="password" name="password2" autocomplete="new-password" required id="id_password2">
<br>
<span class="helptext">Enter the same password as before, for verification.</span>
</td>
</tr>
The two password fields didn’t match.
[12/Apr/2022 15:03:34] "POST /register/ HTTP/1.1" 200 5843
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment