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.

16 lines
576 B
HTML

2 years ago
<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('manage.upload') }}" class="button">upload</a></li>
2 years ago
<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>