remove insane indentation in a template

remotes/1693176582716663532/tmp_refs/heads/watchparty
Aevann1 2022-11-07 08:26:37 +02:00
parent 9b939b30a4
commit 6c1c79ba44
1 changed files with 10 additions and 12 deletions

View File

@ -7,24 +7,22 @@
{% block authtext %}If there's an email address associated with your account, you can use it to recover your {{SITE_NAME}} account and change your password.{% endblock %}
{% block content %}
<div id="login-form">
<div id="login-form">
<form action="/forgot" method="post" class="mt-3">
<form action="/forgot" method="post" class="mt-3">
<label for="username" class="mt-3">Username</label>
<label for="username" class="mt-3">Username</label>
<input autocomplete="off" class="form-control" id="username" aria-describedby="usernameHelp"
type="text" name="username" required="">
<input autocomplete="off" class="form-control" id="username" aria-describedby="usernameHelp"
type="text" name="username" required="">
<label for="email" class="mt-3">Email</label>
<label for="email" class="mt-3">Email</label>
<input type="email" pattern='{{EMAIL_REGEX_PATTERN}}' autocomplete="off" class="form-control" id="password" aria-describedby="passwordHelp" name="email" required>
<input type="email" pattern='{{EMAIL_REGEX_PATTERN}}' autocomplete="off" class="form-control" id="password" aria-describedby="passwordHelp" name="email" required>
<input autocomplete="off" class="btn btn-primary login w-100 mt-3" type="submit" onclick="disable(this)" value="Send recovery link">
<input autocomplete="off" class="btn btn-primary login w-100 mt-3" type="submit" onclick="disable(this)" value="Send recovery link">
</form>
</div>
</form>
</div>
{% endblock %}