Add a way to reset password (WIP)
This commit is contained in:
parent
ebdcb6a90a
commit
5d343c273f
8 changed files with 265 additions and 12 deletions
|
|
@ -7,9 +7,13 @@
|
|||
{% match user %}
|
||||
{% when Some with (user) %}
|
||||
<a class="create-recipe" href="/recipe/new" >Create a new recipe</a>
|
||||
<span>{{ user.email }} / <a href="/signout" />Sign out</a></span>
|
||||
<span><a href="/edit_profile">{{ user.email }}</a> / <a href="/signout" />Sign out</a></span>
|
||||
{% when None %}
|
||||
<span><a href="/signin" >Sign in</a> / <a href="/signup">Sign up</a></span>
|
||||
<span>
|
||||
<a href="/signin" >Sign in</a>/
|
||||
<a href="/signup">Sign up</a>/
|
||||
<a href="/lost_password">Lost password</a>
|
||||
</span>
|
||||
{% endmatch %}
|
||||
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue