Skip to content

Latest commit

 

History

History
20 lines (12 loc) · 285 Bytes

README.md

File metadata and controls

20 lines (12 loc) · 285 Bytes
  
from flask import Flask, render_template

app = Flask(__name__)

@app.route('/')
def index():
    return render_template('index.html')

@app.route('/login')
def login():
    return render_template('login.html')



if __name__=="__main__":
    app.run(debug=True)