mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 09:15:41 +00:00
16 lines
1.0 KiB
Plaintext
16 lines
1.0 KiB
Plaintext
|
<ul class="tabs tabs-transparent">
|
||
|
<li class="tab"><a href="{{ url_for('main.index') }}" target="_self">nopaque</a></li>
|
||
|
<li class="tab disabled"><i class="material-icons">navigate_next</i></li>
|
||
|
{% if request.path == url_for('.login') %}
|
||
|
<li class="tab"><a class="active" href="{{ url_for('.login') }}" target="_self">{{ title }}</a></li>
|
||
|
{% elif request.path == url_for('.register') %}
|
||
|
<li class="tab"><a class="active" href="{{ url_for('.register') }}" target="_self">{{ title }}</a></li>
|
||
|
{% elif request.path == url_for('.reset_password', token=token) %}
|
||
|
<li class="tab"><a class="active" href="{{ url_for('.reset_password', token=token) }}" target="_self">{{ title }}</a></li>
|
||
|
{% elif request.path == url_for('.reset_password_request') %}
|
||
|
<li class="tab"><a class="active" href="{{ url_for('.reset_password_request') }}" target="_self">{{ title }}</a></li>
|
||
|
{% elif request.path == url_for('.unconfirmed') %}
|
||
|
<li class="tab"><a class="active" href="{{ url_for('.unconfirmed') }}" target="_self">{{ title }}</a></li>
|
||
|
{% endif %}
|
||
|
</ul>
|