source: branches/rsr.v5.1/web/app/out/dist/content/set_menus/e_add_menus_categorie.php @ 1

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

import initial

File size: 777 bytes
Line 
1<h2>Nouveau menu</h2>
2<div class="bloc_content">
3  <h3>
4<?php require $env->out_file("views/ariane_menus.php"); ?>
5  </h3>
6
7<br /><br />
8<?php
9
10  $form_action = array
11  ( "e" => "set_menus",
12    "action" => "add_menus_categorie"
13  );
14  if($_GET[$env->param("path")]) $form_action["path"] = $_GET[$env->param("path")];
15
16?>
17<form name="news_form" action="<?= $env->url($form_action) ?>" method="post">
18<table class="admin">
19  <tr>
20    <th>intitule</th>
21    <td><input type="text" name="titre" style="width: 400px"></td>
22  </tr>
23  <tr>
24    <th>lien</th>
25    <td>
26      <input type="text" name="url" style="width: 400px">
27    </td>
28  </tr>
29</table>
30<table class="admin">
31  <tr>
32    <td align="center"><input type="submit" value="Enregistrer" /></td>
33  </tr>
34</table>
35</form>
36</div>
Note: See TracBrowser for help on using the repository browser.