From fb658d00dc23196309489c96fb82a5055f36bad5 Mon Sep 17 00:00:00 2001 From: w Date: Mon, 9 Jun 2025 01:02:48 -0300 Subject: [PATCH] first version of the card creator --- web/app.py | 4 + web/templates/card_creator.html | 134 ++++++++++++++++++++++++++++++++ 2 files changed, 138 insertions(+) create mode 100644 web/templates/card_creator.html diff --git a/web/app.py b/web/app.py index 61ed38f..9c5965c 100644 --- a/web/app.py +++ b/web/app.py @@ -66,6 +66,10 @@ def about(): def submit_character(): return render_template('submit.html') +@app.route('/card_creator') +def card(): + return render_template('card_creator.html') + if __name__ == '__main__': app.run(host='0.0.0.0', port=5000, debug=True) diff --git a/web/templates/card_creator.html b/web/templates/card_creator.html new file mode 100644 index 0000000..9d06fbb --- /dev/null +++ b/web/templates/card_creator.html @@ -0,0 +1,134 @@ +{% extends "_base.html" %} + +{% block content %} + +
+ +

Card Creator

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