From 9dfbfd6631e27f5bdd8c47142599caeeb08e38dc Mon Sep 17 00:00:00 2001 From: yyd Date: Sat, 11 Oct 2025 16:48:58 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=BAforget=5Fpassword.html=E6=96=87?= =?UTF-8?q?=E4=BB=B6=E7=BC=96=E5=86=99=E6=B3=A8=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/forget_password.html | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 src/forget_password.html diff --git a/src/forget_password.html b/src/forget_password.html new file mode 100644 index 0000000..112545d --- /dev/null +++ b/src/forget_password.html @@ -0,0 +1,35 @@ +//这个文件用于实现"忘记密码"功能页面 +{% extends 'share_layout/base_account.html' %}//继承基础账户布局模板,确保页面有统一的头部、尾部和其他共享元素 +{% load i18n %}//加载国际化标签,用于多语言支持 +{% load static %}//加载静态文件标签 +{% block content %}//定义内容块 +
//主容器 + //页面标题 + //显示"忘记密码"标题,支持多语言翻译 + //表单容器 + + //导航链接 +

+ Home Page + | + login page +

//提供返回首页和登录页面的链接 + +
+{% endblock %} \ No newline at end of file