<nav class="navbar navbar-expand-lg sticky-top navbar-dark bg-dark">
|
|
<div class="navbar-brand d-none d-md-block">My Account</div>
|
|
<form class="form-inline ml-auto">
|
|
<a onclick="showApps();" style="cursor: pointer;">
|
|
<svg
|
|
width="24"
|
|
height="24"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
stroke-width="2"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
style="vertical-align: middle;">
|
|
<use xlink:href="{{url_for('static', filename='icons/feathericons/feather-sprite.svg')}}#grid"/>
|
|
</svg>
|
|
</a>
|
|
{% if request.path != url_for('auth.login') %}
|
|
<a class="btn btn-sm btn-primary" style="margin-left: 1rem;" href="{{ url_for('auth.logout') }}" role="button">Logout</a>
|
|
{% endif %}
|
|
</form>
|
|
</nav>
|