19 lines
588 B
HTML
19 lines
588 B
HTML
<section class="bg-primary" id="about">
|
|
<div class="container">
|
|
<form method='POST' action='/edit/description'>
|
|
{{ form.csrf_token }}
|
|
|
|
<div class="row">
|
|
<div class="col-lg-8 mx-auto text-center">
|
|
{{ form.titre_description(col=5,value=bloc.titre_description,
|
|
class="form-control form-control-lg text-center") }}
|
|
<hr class="light my-4">
|
|
{{ form.description(value=bloc.description, class="form-control text-center") }}
|
|
<br/>
|
|
{{ form.submit() }}
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</section>
|