template default en HTML5
[mw_pages] / app / out / default / views / pages / admin / edit.php
index a5f5e2f..accb84f 100644 (file)
@@ -2,31 +2,35 @@
 
 <h2>Modifier une page</h2>
 
-<ul class="admin">
+<ul class="buttons">
   <li><a href="<?php echo $this->url("pages/admin"); ?>">Retour &agrave; la liste des pages</a></li>
 </ul>
 
 <form name="page_form" action="<?php echo $this->url("pages/admin/edit", array("id" => $this->out["page"]["id"])); ?>" method="post">
-  <ul class="form">
-    <li>
-      <p>
-        Titre :
-        <input type="text" size="50" name="title" id="title" value="<?php echo $this->out["page"]["title"]; ?>" />
-      </p>
-    </li>
-    <li>
-      <p>
-        Page parente :
-        <select name="id_parent">
-          <?php echo pages_arbo_edit_select_options($this->out["arbo"], $this->out["page"]["id"], $this->out["page"]["id_parent"], "&nbsp;&nbsp;"); ?>
-        </select>
-      </p>
-    </li>
-    <li>
-      <textarea class="tinymce" cols="60" rows="10" name="content" id="content"><?php echo htmlspecialchars($this->out["page"]["content"]); ?></textarea>
-    </li>
-    <li class="buttons">
-      <input type="submit" value="Enregistrer" />
-    </li>
-  </ul>
+  <fieldset>
+    <ul>
+      <li>
+        <label>Titre</label>
+        <div class="form_input">
+          <input type="text" size="50" name="title" id="title" value="<?php echo $this->out["page"]["title"]; ?>" />
+        </div>
+      </li>
+      <li>
+        <label>Page parente</label>
+        <div class="form_input">
+          <select name="id_parent">
+            <?php echo pages_arbo_edit_select_options($this->out["arbo"], $this->out["page"]["id"], $this->out["page"]["id_parent"], "&nbsp;&nbsp;"); ?>
+          </select>
+        </div>
+      </li>
+      <li>
+        <textarea class="tinymce" cols="60" rows="10" name="content" id="content"><?php echo htmlspecialchars($this->out["page"]["content"]); ?></textarea>
+      </li>
+      <li>
+        <div class="form_buttons">
+          <input type="submit" value="Enregistrer" />
+        </div>
+      </li>
+    </ul>
+  </fieldset>
 </form>
\ No newline at end of file