Skip to content
Snippets Groups Projects
Commit de2aacc2 authored by Patrick Jentsch's avatar Patrick Jentsch
Browse files

Add auth.profile view.

parent dec9efa0
No related branches found
No related tags found
No related merge requests found
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
</div> </div>
<ul id="nav-account-dropdown" class="dropdown-content"> <ul id="nav-account-dropdown" class="dropdown-content">
{% if current_user.is_authenticated %} {% if current_user.is_authenticated %}
<li><a href="#!"><i class="material-icons">person</i>Profile</a></li> <li><a href="{{ url_for('auth.profile') }}"><i class="material-icons">person</i>Profile</a></li>
<li class="divider"></li> <li class="divider"></li>
<li><a href="{{ url_for('auth.logout') }}"><i class="material-icons">chevron_left</i>Log out</a></li> <li><a href="{{ url_for('auth.logout') }}"><i class="material-icons">chevron_left</i>Log out</a></li>
{% else %} {% else %}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment