From 316ccf46bd0912aa5a3030ca1f9548f2ea3c5298 Mon Sep 17 00:00:00 2001 From: sasha-astiadi Date: Thu, 27 Feb 2025 21:20:23 +0800 Subject: [PATCH] add form --- templates/layouts/signup.html | 6 ++++++ templates/partials/form.html | 1 + 2 files changed, 7 insertions(+) create mode 100644 templates/layouts/signup.html create mode 100644 templates/partials/form.html diff --git a/templates/layouts/signup.html b/templates/layouts/signup.html new file mode 100644 index 0000000..d8003cb --- /dev/null +++ b/templates/layouts/signup.html @@ -0,0 +1,6 @@ +{% extends "_default/base.html" %} +{% block content %} + +{% include "partials/form.html" %} + +{% endblock content %} \ No newline at end of file diff --git a/templates/partials/form.html b/templates/partials/form.html new file mode 100644 index 0000000..5a4ee76 --- /dev/null +++ b/templates/partials/form.html @@ -0,0 +1 @@ +
\ No newline at end of file