
- Create password change modal on user dashboard - Split login into two flows -- WPI and local Need to define password strength requirements and create local login page, as well as allow for setting an alternative contact email.
12 lines
304 B
HTML
12 lines
304 B
HTML
{% extends "layout.html" %}
|
|
|
|
{% block app_content %}
|
|
<h1>Login Methods</h1>
|
|
|
|
<div>
|
|
<a class="btn btn-primary" href="{{ url_for('auth.oauth_redirect') }}">Login with WPI</a>
|
|
</div>
|
|
<div class="mt-1 mb-3">
|
|
<a class="btn btn-secondary" href="">Login with Local Account</a>
|
|
</div>
|
|
{% endblock app_content %}
|