33 lines
1.5 KiB
HTML
33 lines
1.5 KiB
HTML
{% block content %}
|
|
<div id="login-form" class="">
|
|
<h1 class="h2">Welcome back.</h1>
|
|
<p class="text-muted mb-md-5">Glad to have you back!</p>
|
|
|
|
{% if failed %}
|
|
<div class="alert alert-danger alert-dismissible fade show d-flex my-3" role="alert">
|
|
<i class="fas fa-exclamation-circle my-auto"></i>
|
|
<div>
|
|
Incorrect username, email address, or password.
|
|
<br>
|
|
<a href="/forgot" class="alert-link">Forgot password?</a>
|
|
</div>
|
|
<button class="close" data-bs-dismiss="alert" aria-label="Close">
|
|
<span aria-hidden="true">×</span>
|
|
</button>
|
|
</div>
|
|
{% endif %}
|
|
|
|
<form action="/login" method="post" class="mt-md-3" id="login">
|
|
<label for="username" class="mt-3">Username or Email Address</label>
|
|
<input autocomplete="off" class="form-control" id="username" aria-describedby="usernameHelp" type="text" name="username" required="">
|
|
<input type="hidden" name="redirect" value="{{redirect}}">
|
|
<label for="password" class="mt-3">Password</label>
|
|
<input autocomplete="off" class="form-control" id="password" aria-describedby="passwordHelp" type="password" name="password" required="">
|
|
<small><a href="/forgot">Forgot password?</a></small>
|
|
<button class="btn btn-primary login w-100 mt-3" id="login_button">Sign in</button>
|
|
<div class="text-center text-muted text-small mt-5 mb-3">
|
|
Don't have an account? <a href="/signup{{'?redirect='+redirect if redirect else ''}}" class="font-weight-bold toggle-login">Sign up</a>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|