You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
492 B
HTML
15 lines
492 B
HTML
<header id="header">
|
|
<h1 id="logo"><a href="/">{{ config.SITE_NAME }}</a></h1>
|
|
<nav id="nav">
|
|
<ul>
|
|
<li><a href="/">Home</a></li>
|
|
{% if current_user.is_authenticated %}
|
|
<li><a href="{{ url_for('manage.index') }}" class="button">Manage</a></li>
|
|
<li><a href="{{ url_for('meta.logout') }}" class="button">Logout</a></li>
|
|
{% else %}
|
|
<li><a href="#" id="connectWallet" class="button">Connect</a></li>
|
|
{% endif %}
|
|
</ul>
|
|
</nav>
|
|
</header>
|