diff --git a/web/app.py b/web/app.py index 225d812..403362f 100644 --- a/web/app.py +++ b/web/app.py @@ -93,6 +93,10 @@ def about(): def submit_character(): return render_template('submit.html') +@app.route('/card_creator') +def card_creator(): + return render_template('card_creator.html') + @app.route('/players') def player_list(): # Replace with your actual player fetching logic diff --git a/web/static/card-frame.png b/web/static/card-frame.png new file mode 100644 index 0000000..3239200 Binary files /dev/null and b/web/static/card-frame.png differ diff --git a/web/static/style.css b/web/static/style.css index 95380a8..acde655 100644 --- a/web/static/style.css +++ b/web/static/style.css @@ -41,7 +41,6 @@ body { } .container { - max-width: 800px; margin: 30px auto; padding: 20px; background-color: #ffffff; diff --git a/web/static/v1_common.png b/web/static/v1_common.png new file mode 100644 index 0000000..0d4b649 Binary files /dev/null and b/web/static/v1_common.png differ diff --git a/web/static/v1_epic.png b/web/static/v1_epic.png new file mode 100644 index 0000000..05f8b6c Binary files /dev/null and b/web/static/v1_epic.png differ diff --git a/web/static/v1_legendary.png b/web/static/v1_legendary.png new file mode 100644 index 0000000..2dc719f Binary files /dev/null and b/web/static/v1_legendary.png differ diff --git a/web/static/v1_rare.png b/web/static/v1_rare.png new file mode 100644 index 0000000..fedfa39 Binary files /dev/null and b/web/static/v1_rare.png differ diff --git a/web/static/v1_uncommon.png b/web/static/v1_uncommon.png new file mode 100644 index 0000000..97c9b9d Binary files /dev/null and b/web/static/v1_uncommon.png differ diff --git a/web/templates/_base.html b/web/templates/_base.html index 68e15ee..78355f9 100644 --- a/web/templates/_base.html +++ b/web/templates/_base.html @@ -40,6 +40,7 @@ along with this program. If not, see https://www.gnu.org/licenses/. About Submit a Character Player List + Card Creator diff --git a/web/templates/card_creator.html b/web/templates/card_creator.html new file mode 100644 index 0000000..784aaa1 --- /dev/null +++ b/web/templates/card_creator.html @@ -0,0 +1,230 @@ +{% extends "_base.html" %} + +{% block content %} + +