Fix indentation

This commit is contained in:
Remi Rampin 2022-05-22 22:51:32 -04:00
parent 3959e46afe
commit 0c71f45e66
7 changed files with 138 additions and 128 deletions

View File

@ -20,12 +20,16 @@
<label for="adults" class="col-form-label text-dark">Adultes :</label>
</div>
<div class="col-auto">
<input type="number" class="form-control" name="adults" id="adults" min="1" max="5"
<input
type="number" class="form-control"
name="adults" id="adults"
min="1" max="5"
{% if adults is not none %}
value="{{ adults }}"
{% else %}
value="1"
{% endif %}>
{% endif %}
/>
</div>
</div>
<div class="row g-3 align-items-center">
@ -33,12 +37,16 @@
<label for="children" class="col-form-label text-dark">Enfants :</label>
</div>
<div class="col-auto">
<input type="number" class="form-control" name="children" id="children" min="0" max="5"
<input
type="number" class="form-control"
name="children" id="children"
min="0" max="5"
{% if children is not none %}
value="{{ children }}"
{% else %}
value="0"
{% endif %}>
{% endif %}
/>
</div>
</div>

View File

@ -9,10 +9,12 @@ logger = logging.getLogger(__name__)
app = Flask('france_rsvp')
@app.route('/france/')
def index():
return render_template('index.html')
@app.route('/france/rsvp', methods=['GET', 'POST'])
def form():
error = None