@app.route("/")
<html lang="en"> <head> <link rel ="stylesheet" type="text/css" href="{{ url_for('static', filename='main.css') }}" </head> <body> <h1 > {{ message }} </h1> </body> </html>
h1 { font-size: 2em; color: green; text-align: center; }
<html lang="en"> <head> <link rel ="stylesheet" type="text/css" href="{{ url_for('static', filename='main.css') }}" </head> <body> <h1 > {{ message_bienvenue }}</h1> </body> Cliquer pour continuer </html>
Cliquer pour continuer
<html lang="en"> <head> <link rel ="stylesheet" type="text/css" href="{{ url_for('static', filename='main.css') }}" </head> <body> <h1 > Vous êtes sur la 2eme page </h1> </body> retourner à la page d'accueil </html>
<html lang="en"> <head> <link rel ="stylesheet" type="text/css" href="{{ url_for('static', filename='main.css') }}"> </head> <body> <h1>Indiquer votre nom</h1> <form action="." method="POST"> <input type="text" name="text"> <button type="submit">OK</button> </form> </body> </html>