Bertrand Benjamin
5b206949dd
All checks were successful
continuous-integration/drone/push Build is passing
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)
|