7 lines
188 B
Python
7 lines
188 B
Python
|
@post('/formulaire')
|
||
|
def bonjour() :
|
||
|
nom = bottle.request.forms.get('nom')
|
||
|
body = "<p>Bonjour mon(a) che(è)r(e) " + nom + "</p>"
|
||
|
|
||
|
return template("modele_base.py", body=body)
|