diff --git a/__pycache__/app.cpython-313.pyc b/__pycache__/app.cpython-313.pyc new file mode 100644 index 0000000..9513668 Binary files /dev/null and b/__pycache__/app.cpython-313.pyc differ diff --git a/app.py b/app.py new file mode 100644 index 0000000..2527a19 --- /dev/null +++ b/app.py @@ -0,0 +1,10 @@ +from flask import Flask, render_template + +app =Flask(__name__) + +@app.route('/') +def index(): + return render_template('index.html') + +if __name__ == "__main__": + app.run(debug=True) \ No newline at end of file diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..46b4b98 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,9 @@ +Click==7.0 +Flask==1.1.2 +Flask-SQLAlchemy==2.4.4 +gunicorn==19.9.0 +itsdangerous==1.1.0 +Jinja2==2.11.3 +MarkupSafe==1.1.1 +SQLAlchemy==1.3.22 +Werkzeug==1.0.1 diff --git a/static/css/main.css b/static/css/main.css new file mode 100644 index 0000000..183685b --- /dev/null +++ b/static/css/main.css @@ -0,0 +1,4 @@ +body { + margin: 0; + font-family: sans-serif; +} \ No newline at end of file diff --git a/templates/base.html b/templates/base.html new file mode 100644 index 0000000..ec7ed53 --- /dev/null +++ b/templates/base.html @@ -0,0 +1,12 @@ + + +
+ + + + + {% block body %}{% endblock %} + + \ No newline at end of file diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..1c3ee38 --- /dev/null +++ b/templates/index.html @@ -0,0 +1,9 @@ +{% extends 'base.html'%} + +{% block head %} + +{% endblock %} + +{% block body %} +