diff options
author | vincent-peugnet <v.peugnet@free.fr> | 2019-03-28 22:03:52 +0100 |
---|---|---|
committer | vincent-peugnet <v.peugnet@free.fr> | 2019-03-28 22:03:52 +0100 |
commit | d8b02407afd7ce933d1a9935f5c723a5d47ae368 (patch) | |
tree | 8a38b5e269e05e0badbb1f5fca90381d25c41346 /app/view/templates/admin.php | |
parent | 53fcf8ed3cf59f38adfa4d66e925e147a64f7eef (diff) | |
download | wcms-d8b02407afd7ce933d1a9935f5c723a5d47ae368.tar.gz wcms-d8b02407afd7ce933d1a9935f5c723a5d47ae368.zip |
graphic update
Diffstat (limited to 'app/view/templates/admin.php')
-rw-r--r-- | app/view/templates/admin.php | 40 |
1 files changed, 35 insertions, 5 deletions
diff --git a/app/view/templates/admin.php b/app/view/templates/admin.php index bd37464..08126a7 100644 --- a/app/view/templates/admin.php +++ b/app/view/templates/admin.php @@ -10,11 +10,19 @@ <main class="admin"> - <h1>Administration</h1> + <section> <form action="<?= $this->url('adminupdate') ?>" method="post"> + + <article> + + <h1>Administration</h1> + <input type="submit" value="Update configuration"> + </article> + + <article> <h2>Home page</h2> @@ -49,6 +57,10 @@ ?> </select> + </article> + + <article> + <h2>Page creation</h2> <label for="defaultprivacy">Default privacy</label> @@ -82,6 +94,10 @@ } ?> + </article> + + <article> + <h2>Editing</h2> @@ -89,7 +105,8 @@ <label for="existnot">Text to show when a page does not exist yet</label> <input type="text" name="existnot" id="existnot" value="<?= Config::existnot() ?>"> - <h2>Render</h2> + + <h4>Render</h4> <div class="checkbox"> <input type="hidden" name="reccursiverender" value="0"> @@ -97,7 +114,8 @@ <label for="reccursiverender">Reccursive render</label> </div> - <h3>Links</h3> + + <h4>Links</h4> <div class="checkbox"> <input type="hidden" name="externallinkblank" value="0"> @@ -113,7 +131,7 @@ <i>(This modifications need re-rendering)</i> - <h3>Edit quick menu</h3> + <h4>Edit quick menu</h4> <div class="checkbox"> <input type="checkbox" name="showeditmenu" id="showeditmenu" <?= Config::showeditmenu() === true ? 'checked' : '' ?>> @@ -137,6 +155,10 @@ } ?> + </article> + + <article> + <h2>CSS</h2> <label for="globalcss">Edit global css that will apply to every pages</label> @@ -154,6 +176,9 @@ ?> </select> + </article> + + <article> <h2>Tracking</h2> @@ -162,13 +187,18 @@ <i>(Need rendering to work)</i> + </article> + <article> <input type="submit" value="Update configuration"> + </article> + + </form> - + </section> </main> </body> |