Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 302 Bytes

README.md

File metadata and controls

21 lines (15 loc) · 302 Bytes
from flask import Flask

app = Flask(__name__)

@app.route('/')
def index():
    return 'This is Index Page'

@app.route('/login')
def login():
    return 'This is Login Page'

@app.route('/hello')
def hello():
    return 'Hello, World'

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