10 lines
296 B
Python
10 lines
296 B
Python
|
@get('/formulaire')
|
||
|
def get_formulaire():
|
||
|
formulaire = """
|
||
|
<form method='post' action='bonjour'>
|
||
|
<input type='text' name='nom' placeholder='Votre nom ?'/>
|
||
|
<input type='submit' value='Bonjour bottle !'/>
|
||
|
</form>
|
||
|
"""
|
||
|
return template("modele_base.html", boby=formulaire)
|