This repository has been archived on 2023-05-17. You can view files and clone it, but cannot push or open issues or pull requests.
web-gpt/project/templates/index.html

13 lines
391 B
HTML
Raw Normal View History

2023-03-31 22:11:34 +08:00
{% extends "base.html" %}
{% block content %}
<h2 class="subtitle">
你好, {{ username }}。
{% if not is_authenticated %}
<br> <br>
<a href="{{ url_for('auth.login') }}"><button type="button" class="btn btn-primary">登录</button></a>
<a href="{{ url_for('auth.signup') }}"><button type="button" class="btn btn-default">注册</button></a>
{% endif %}
</h2>
{% endblock %}