You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
from flask import Flask, render_template ######## Importing the Flask & render_template module to server the html files for web server
allhtml=Flask(__name__)
@allhtml.route("/")
def root():
return render_template("webapp.html") ############ Create a folder "template" in the source directory and place html files there as "render_template" function will look for html file under templates directory