at/templates/basic.html

25 lines
668 B
HTML
Raw Normal View History

2012-01-29 01:34:11 +00:00
<!doctype html>
<html>
<head>
{% block head %}
<link rel="stylesheet" type="text/css" href="/static/css/basic.css">
<title>{% block title %}Now at hackerspace{% endblock %}</title>
{% endblock %}
</head>
<body>
{% block body %}
<div class="login">
2017-10-11 08:58:33 +00:00
{% if current_user.is_authenticated %}
logged in as {{ current_user.id }} |
2012-01-29 01:34:11 +00:00
<a href="account">account</a> |
2017-10-11 08:58:33 +00:00
<a href="{{ url_for('spaceauth.logout') }}">log out</a>
2012-01-29 01:34:11 +00:00
{% else %}
2017-10-11 08:58:33 +00:00
<a href="{{ url_for('spaceauth.login') }}">login</a>
2012-01-29 01:34:11 +00:00
{% endif %}
</div>
{% block content %}
{% endblock %}
{% endblock %}
</body>
</html>