|
12345678910111213141516 |
- # @name: main.py
- # @creation_date: 2022-09-07
- # @license: The MIT License <https://opensource.org/licenses/MIT>
- # @author: Simon Bowie <ad7588@coventry.ac.uk>
- # @purpose: Main route for index and other pages
- # @acknowledgements:
- # https://www.digitalocean.com/community/tutorials/how-to-add-authentication-to-your-app-with-flask-login
-
- from flask import Blueprint, render_template
-
- main = Blueprint('main', __name__)
-
- # route for index page
- @main.route('/')
- def index():
- return render_template('index.html')
|