template: Add a link to login page from register

and vice versa
This commit is contained in:
Cara Salter 2022-12-09 09:25:13 -05:00
parent 66858b95ea
commit 9d9ec58a7c
No known key found for this signature in database
GPG key ID: 90C66610C82B29CA
2 changed files with 7 additions and 0 deletions

View file

@ -24,6 +24,9 @@
{{form.submit}}
</div>
</form>
<span><p><em>Don't have an account? <a
href="{{url_for('registration.register')}}">Register
here</a>.</em></p></span>
</div>
</div>
{% endblock %}

View file

@ -50,6 +50,10 @@
{{form.submit}}
</div>
</form>
<span><p><em>You may also want to <a
href="{{url_for('registration.login')}}">
log in</a>.</em></p></span>
</div>
</div>
{% endblock %}