diff options
-rw-r--r-- | wqflask/wqflask/templates/base.html | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/wqflask/wqflask/templates/base.html b/wqflask/wqflask/templates/base.html index 126e1b82..1328d229 100644 --- a/wqflask/wqflask/templates/base.html +++ b/wqflask/wqflask/templates/base.html @@ -185,6 +185,15 @@ </li> {% endif %} + {%if not logged_in()%} + <li class=""> + <a id="user:register" title="Register a new user account." + href="{{url_for('oauth2.user.register_user')}}"> + Register + </a> + </li> + {%endif%} + {%if logged_in()%} <li class=""> <a id="user:profile" title="User's profile page." |