This repository has been archived on 2023-10-15. You can view files and clone it, but cannot push or open issues or pull requests.

10 lines
202 B
HTML

{% extends "base.html" %}
{% block content %}
<h1 class="title">
Welcome, {{ name }}! <p/>
Your google ID is {{ google_id }} <p/>
Admin?: {{ "yes" if is_admin else "no" }} <p/>
</h1>
{% endblock %}