0

what are these tags meaning in html

<!doctype html> <html> <body> <h1> Login </h1> {% if error %} <p> <strong> Error: </strong> {{error}}</p> {% endif %} <form action = "" method="POST" > <dl> <dt> Username: </dt> <dd> <input type="text" name="username" value ="{{request.args.username}}"> </dd> <dt>Password:</dt> <dd> <input type="password" name="password" ></dd> </dl> <p><input type="submit" value="Login" > </p> </form> </body> </html> can anyone tell me "%", "{{ }} " these tags meaning in html , is it any other language embedded in html? P.S - I m learning flask online so it could be related to that

12th Dec 2020, 10:23 AM
ABHISHEK
ABHISHEK - avatar
3 ответов
+ 1
i think it is django html template..to add logic to your html file
12th Dec 2020, 10:29 AM
durian
durian - avatar
+ 1
inside {{}} there is a connection with the backend
12th Dec 2020, 11:22 AM
Иван Чикyнов
Иван Чикyнов - avatar
0
Иван Чикyнов Lily Mea Thanks for your valuable time and answers
15th Dec 2020, 6:22 AM
ABHISHEK
ABHISHEK - avatar