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/profile.html
2023-03-31 22:11:34 +08:00

12 lines
242 B
HTML

{% extends "base.html" %}
{% block content %}
<h1 class="title">
欢迎回来, {{ username }}!
</h1>
{% if isActivated %}
开始聊天吧
{% else %}
您的账号暂未激活,请等待管理员激活此账号。
{% endif %}
{% endblock %}