diff options
author | Thomas Lange <code@nerdmind.de> | 2017-05-31 23:42:11 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2017-05-31 23:42:11 +0200 |
commit | 8cafd4967655a996d0d2b71073f884e2f28cf6ac (patch) | |
tree | 599e859df5ddd869842e5b2d96a922390b2707fd /template/admin/html/user/form.php | |
parent | 816959215dff92ee0af295be6d801b4cfa150269 (diff) | |
download | blog-8cafd4967655a996d0d2b71073f884e2f28cf6ac.tar.gz blog-8cafd4967655a996d0d2b71073f884e2f28cf6ac.tar.xz blog-8cafd4967655a996d0d2b71073f884e2f28cf6ac.zip |
Optimizations and tiny design update for the admin template:
+ The form buttons for insert, update and delete are now having a corresponding background color (green, blue and red).
+ The information messages are now displayed within the <form> element and with a red background color around the text.
Diffstat (limited to 'template/admin/html/user/form.php')
-rw-r--r-- | template/admin/html/user/form.php | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/template/admin/html/user/form.php b/template/admin/html/user/form.php index 8156496..2d3625c 100644 --- a/template/admin/html/user/form.php +++ b/template/admin/html/user/form.php @@ -1,12 +1,16 @@ -<?php if(isset($FORM['INFO'])): ?> - <?php foreach($FORM['INFO'] as $message): ?> - <div class="red"><?=$message?></div> - <?php endforeach; ?> -<?php endif; ?> - <form action="" method="POST"> <input type="hidden" name="token" value="<?=$FORM['TOKEN']?>" /> + <?php if($FORM['INFO']): ?> + <div class="flex flex-direction-column"> + <ul id="message-list"> + <?php foreach($FORM['INFO'] as $message): ?> + <li><?=$message?></li> + <?php endforeach; ?> + </ul> + </div> + <?php endif; ?> + <?php if($FORM['TYPE'] !== 'DELETE'): ?> <div class="flex flex-responsive"> <div class="flex-item"> @@ -90,11 +94,11 @@ <div class="flex flex-padding background"> <?php if($FORM['TYPE'] === 'INSERT'): ?> - <input type="submit" name="insert" value="<?=$Language->text('insert')?>" /> + <input id="insert-button" type="submit" name="insert" value="<?=$Language->text('insert')?>" /> <?php elseif($FORM['TYPE'] === 'UPDATE'): ?> - <input type="submit" name="update" value="<?=$Language->text('update')?>" /> + <input id="update-button" type="submit" name="update" value="<?=$Language->text('update')?>" /> <?php elseif($FORM['TYPE'] === 'DELETE'): ?> - <input type="submit" name="delete" value="<?=$Language->text('delete')?>" id="delete-button" data-text="<?=$Language->template('sure')?>" /> + <input id="delete-button" type="submit" name="delete" value="<?=$Language->text('delete')?>" data-text="<?=$Language->template('sure')?>" /> <?php endif; ?> </div> </form>
\ No newline at end of file |