source: trunk/web/app/out/dist/content/set_map/e_add_emplacement_type.php @ 1

Last change on this file since 1 was 1, checked in by dj3c1t, 12 years ago

import initial

File size: 792 bytes
Line 
1<h2>Nouveau type d'emplacement</h2>
2<div class="bloc_content">
3<form name="news_form"
4      action="<?= $env->url(array("e" => "set_map", "action" => "add_emplacement_type")) ?>"
5      method="post"
6      enctype="multipart/form-data">
7<table class="admin">
8  <tr>
9    <th>intitule</th>
10    <td><input type="text" name="intitule" style="width: 500px" value="<?= $_POST["intitule"] ?>"></td>
11  </tr>
12  <tr>
13    <th>icone</th>
14    <td>
15      <input type="file" name="icone" style="width: 400px">
16    </td>
17  </tr>
18  <tr>
19    <th>description</th>
20    <td><textarea name="descriptif" cols="50" rows="3"><?= $_POST["descriptif"] ?></textarea></td>
21  </tr>
22</table>
23<table class="admin">
24  <tr>
25    <td align="center"><input type="submit" value="Enregistrer" /></td>
26  </tr>
27</table>
28</form>
29</div>
Note: See TracBrowser for help on using the repository browser.