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.
14 lines
409 B
HTML
14 lines
409 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('meta.logout') }}" class="button">Logout</a></li>
|
||
|
{% else %}
|
||
|
<li><a href="#" id="connectWallet" class="button">Connect</a></li>
|
||
|
{% endif %}
|
||
|
</ul>
|
||
|
</nav>
|
||
|
</header>
|