You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
502 B

<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>用户资料</title>
</head>
<body>
<h1>用户资料</h1>
<p>用户名: {{ user.username }}</p>
<p>邮箱: {{ user.email }}</p>
<p>头像: <img src="{{ user.avatar.url }}" alt="用户头像" width="100"></p> <!-- 假设你的用户模型有头像字段 -->
<a href="{% url 'update_avatar' %}">更新头像</a>
</body>
</html>