{% extends "base.html" %} {% block title %}个人中心 - 图书管理系统{% endblock %} {% block head %} {% endblock %} {% block content %}
{{ user.username[0] }}

{{ user.nickname or user.username }}

{{ '管理员' if user.role_id == 1 else '普通用户' }}

--
借阅中
--
已归还
--
已逾期
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endif %} {% endwith %}

个人信息

用于接收系统通知和找回密码
用于接收借阅提醒和系统通知

修改密码

密码长度至少为6个字符

最近活动

Loading...

加载中...

{% endblock %} {% block scripts %} {% endblock %}