blob: db484966a260691d3bd9ed60fb303131fe61b707 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<?php declare(strict_types=1); ?>
<section class="new_page">
<h3>Création d'une nouvelle page</h3>
<div class="form_zone">
<form method="post" action="<?= new URL(['from' => 'nouvelle_page']) ?>">
<p>
<label for="new_page_name">Nom de la page</label>
<input id="page_name" type="text" name="new_page_name" onchange="makePageNamePath()" required>
</p>
<p>
<label for="new_page_name_path">Chemin de l'URL</label>
<input id="page_name_path" type="text" name="new_page_name_path" placeholder="ex: nouvelle_page" required>
</p>
<p>
<label for="page_location">Placer la page juste après cette entrée</label>
<select id="page_location" name="page_location">
<?= $this->options ?>
</select>
</p>
<p>
<label class="label_textarea" for="new_page_description">Description qui apparaît sous le titre dans les moteurs de recherche</label>
<textarea id="new_page_description" name="new_page_description" cols="40" rows="3" placeholder="ex: nous faisons ceci et cela, etc" required></textarea>
</p>
<input type="submit" value="Créer la page">
</form>
</div>
</section>
|