Files
s2p_banking_system/flask.py
Lucas Mathews 544b9e1c2f minor changes
2024-05-19 19:51:59 +02:00

14 lines
275 B
Python

# 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')