minor changes
This commit is contained in:
13
flask.py
13
flask.py
@@ -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')
|
||||
|
||||
|
||||
Reference in New Issue
Block a user