mirror of
https://github.com/simple-login/app.git
synced 2024-11-15 05:07:33 +08:00
58 lines
1.7 KiB
HTML
58 lines
1.7 KiB
HTML
{% extends "single.html" %}
|
|
|
|
{% block title %}
|
|
Login
|
|
{% endblock %}
|
|
|
|
{% block single_content %}
|
|
|
|
{% if show_resend_activation %}
|
|
<div class="text-center text-muted small mb-4">
|
|
You haven't received the activation email?
|
|
<a href="{{ url_for('auth.resend_activation') }}">Resend</a>
|
|
</div>
|
|
{% endif %}
|
|
|
|
<div class="card" style="border-radius: 2%">
|
|
<div class="card-body p-6">
|
|
<h1 class="card-title">Welcome back!</h1>
|
|
<form method="post">
|
|
{{ form.csrf_token }}
|
|
|
|
<div class="form-group">
|
|
<label class="form-label">Email address</label>
|
|
{{ form.email(class="form-control", type="email", autofocus="true") }}
|
|
{{ render_field_errors(form.email) }}
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label class="form-label">
|
|
Password
|
|
</label>
|
|
{{ form.password(class="form-control", type="password") }}
|
|
{{ render_field_errors(form.password) }}
|
|
<div class="text-muted">
|
|
<a href="{{ url_for('auth.forgot_password') }}" class="small">
|
|
I forgot my password
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-footer">
|
|
<button type="submit" class="btn btn-primary btn-block">Log in</button>
|
|
</div>
|
|
|
|
</form>
|
|
{% if connect_with_proton %}
|
|
<div class="text-center my-2 text-gray"><span>or</span></div>
|
|
<a class="btn btn-primary btn-block mt-2 proton-button" href="{{ url_for("auth.proton_login", next=next_url) }}">Log in with Proton</a>
|
|
{% endif %}
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="text-center text-muted mt-2">
|
|
Don't have an account yet? <a href="{{ url_for('auth.register') }}">Sign up</a>
|
|
</div>
|
|
|
|
{% endblock %}
|