commit e5de1eeec4e8519dc5462d129472830b0cd8667e Author: 钱乐涛 <1215891603@qq.com> Date: Sun Jun 2 20:34:54 2024 +0800 上传文件至 / diff --git a/login.html b/login.html new file mode 100644 index 0000000..b001cb0 --- /dev/null +++ b/login.html @@ -0,0 +1,51 @@ +{% block body %} +{% if session['logged_in'] %} + +你已登录 {{ session['username'] }}。 登出点击这里。 + +{% else %} + + + + +
+ +
+

Sign in

+
+ + + + + 注册 +
+ +{% endif %} +{% endblock %} \ No newline at end of file diff --git a/reset.html b/reset.html new file mode 100644 index 0000000..741a7f9 --- /dev/null +++ b/reset.html @@ -0,0 +1,58 @@ +{% block body %} + + + + + +
+ +
+

Reset Password

+
+ + + + + + + +
+{% endblock %} \ No newline at end of file diff --git a/signup.html b/signup.html new file mode 100644 index 0000000..660e924 --- /dev/null +++ b/signup.html @@ -0,0 +1,74 @@ +{% block body %} +{% if session['logged_in'] %} + +You're logged in already! Logout. + +{% else %} + + + + +

{{ get_flashed_messages()[0] | safe }}

+ + +
+ +
+

Sign up

+
+ +

+

+

+ + +
+ +{% endif %} +{% endblock %} \ No newline at end of file