diff --git a/app/templates/auth/reset_password.html.j2 b/app/templates/auth/reset_password.html.j2 new file mode 100644 index 0000000000000000000000000000000000000000..782a1f775706d6982870c7884d35bd4ffd9ed1d4 --- /dev/null +++ b/app/templates/auth/reset_password.html.j2 @@ -0,0 +1,15 @@ +{% extends "base.html.j2" %} + +{% block page_content %} +<div class="col s12 m6 offset-m3"> + <div class="card medium"> + <div class="card-content"> + <p>Sign in into an exisiting account or register a new one!</p> + <br> + <div class="card-action"> + <a class="btn" href="{{url_for('auth.register')}}">Register</a> + </div> + </div> + </div> +</div> +{% endblock %}