hack-wpi-python/goathacks/templates/login.html
Cara Salter b2c8f3a77a
bootstrap5-ify the dashboard and participant-facing pages
except login

don't merge to master yet!
2023-01-13 18:06:16 -05:00

24 lines
927 B
HTML

{% extends 'base.html' %}
{% from 'bootstrap5/form.html' import render_form %}
{% block content %}
<div style="height: 100%;">
<div id="registration-banner" class="parallax-container valign-wrapper">
<div class="section">
<h3 class="header-center text-darken-2">Login</h3>
</div>
</div>
</div>
<div class="container">
<div class="section" style="background-color: #974355; padding: 20px;">
{{ render_form(form) }}
<span><p><em>Don't have an account? <a
href="{{url_for('registration.register')}}">Register
here</a>.</em></p></span>
<span><p><em>Forgot your password? Head over <a
href="{{url_for('registration.reset')}}">here</a>
to reset it.</em></p></span>
</div>
</div>
{% endblock %}