minor changes

This commit is contained in:
Lucas Mathews
2024-05-19 19:51:59 +02:00
parent 76fd8ee180
commit 544b9e1c2f
4 changed files with 22 additions and 5 deletions

View File

@@ -0,0 +1,13 @@
# Lucas Mathews - Fontys Student ID: 5023572
# Banking System Flask App
from flask import Flask, render_template, request, make_response, redirect
from config import CONFIG
app = Flask(__name__)
@app.route('/')
def index():
return render_template('bank/index.html')