From 00461080f2c3bb9372c2ec28c2f40e0f64397077 Mon Sep 17 00:00:00 2001 From: chzhang Date: Sat, 3 Dec 2022 21:12:15 +0800 Subject: template htmls --- web/flask_proj/bak/templates/base.html | 54 +++++++++++++++++++++++++++++++++ web/flask_proj/bak/templates/index.html | 11 +++++++ web/flask_proj/bak/templates/login.html | 12 ++++++++ 3 files changed, 77 insertions(+) create mode 100644 web/flask_proj/bak/templates/base.html create mode 100644 web/flask_proj/bak/templates/index.html create mode 100644 web/flask_proj/bak/templates/login.html (limited to 'web/flask_proj/bak/templates') diff --git a/web/flask_proj/bak/templates/base.html b/web/flask_proj/bak/templates/base.html new file mode 100644 index 0000000..50d8ff8 --- /dev/null +++ b/web/flask_proj/bak/templates/base.html @@ -0,0 +1,54 @@ + + + + + {% block title %}{% endblock %} + + + + + + {% block content %} + {% endblock %} + + + + + + + \ No newline at end of file diff --git a/web/flask_proj/bak/templates/index.html b/web/flask_proj/bak/templates/index.html new file mode 100644 index 0000000..5e69e8f --- /dev/null +++ b/web/flask_proj/bak/templates/index.html @@ -0,0 +1,11 @@ + +{% extends 'base.html' %} + +{% block title %} +title +{% endblock %} + + +{% block content %} +

index page

+{% endblock %} \ No newline at end of file diff --git a/web/flask_proj/bak/templates/login.html b/web/flask_proj/bak/templates/login.html new file mode 100644 index 0000000..435fac4 --- /dev/null +++ b/web/flask_proj/bak/templates/login.html @@ -0,0 +1,12 @@ + +{% extends "base.html" %} + +{% block title %} login page {% endblock %} + +{% block content %} +
+

Name:

+

+

+
+{% endblock %} \ No newline at end of file -- cgit v1.2.3