From 8285ca230c0268977372630d32c365be70441a43 Mon Sep 17 00:00:00 2001 From: Matthieu Bessat Date: Tue, 22 Oct 2024 18:31:49 +0200 Subject: [PATCH] WIP --- README.md | 2 +- src/templates/pages/authorize.html | 15 +++++++++++++++ 2 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 src/templates/pages/authorize.html diff --git a/README.md b/README.md index 6df4894..55f5c30 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Minauth +# Minauthator ## Features diff --git a/src/templates/pages/authorize.html b/src/templates/pages/authorize.html new file mode 100644 index 0000000..95f1129 --- /dev/null +++ b/src/templates/pages/authorize.html @@ -0,0 +1,15 @@ +{% extends "layouts/base.html" %} +{% block body %} + +{% if error %} +
+ Error: {{ error }} +
+{% endif %} +
+ + + + +
+{% endblock %}