zulip/templates/zephyr/base.html

26 lines
533 B
HTML
Raw Normal View History

<!DOCTYPE html>
{% autoescape off %}
<html>
<head>
<title>Zephyr</title>
<link href="/static/bootstrap/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<script src="/static/bootstrap/js/bootstrap.min.js"></script>
{% if not user.is_authenticated %}<a href="/accounts/login/?next=/">login</a> | <a
href="/accounts/register/">register</a>{% endif %}
{% if user.is_authenticated %}<a href="/accounts/logout/?next=/">logout</a>{% endif %}
{% block content %}
{% endblock %}
</body>
</html>
{% endautoescape %}