2020-11-02 09:01:02 +00:00
|
|
|
<ul class="tabs tabs-transparent">
|
2020-11-02 15:29:22 +00:00
|
|
|
<li class="tab"><a href="{{ url_for('main.index') }}" target="_self"><i class="material-icons">home</i></a></li>
|
2020-11-02 09:01:02 +00:00
|
|
|
<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>
|