Relative Content

Tag Archive for htmlflask

simple javascript code linked with flask not working

<!DOCTYPE html> <html> <head> <meta charset=”UTF-8″> <title>Home</title> <link rel=”stylesheet” type=”text/css” href=”{{url_for(“static”,filename=”css/css.css”)}}”> </head> <body> <h1>Welcome to recipe book</h1> <p>{{length}}</p> <script> const amount = {{length}}; console.log(amount); </script> </body> </html> #,redirect,url_for,send_from_directory, from flask import Flask,render_template import os app = Flask(__name__) @app.route(“/”) def home(): parent = r”C:UserskhaitDesktopWebsiteRecipe_Bookstaticimages” everything = os.listdir(parent) images = [] for i in everything: if os.path.isfile(os.path.join(parent,i)): […]

How to send data to form textbox in flask app

I trying to build simple web application, while doing I am able to get the data from form to flask but while sending back or to another html form data is not going to textbox. Could anyone please help?