[Form 1.9] taille et position des boutons

This commit is contained in:
fredtempez 2019-05-13 21:47:13 +02:00
parent 1a9cfbaac9
commit 44d58c7c01
2 changed files with 3 additions and 3 deletions

View File

@ -105,7 +105,7 @@
</div>
<?php if($this->getUser('group') >= self::GROUP_ADMIN): ?>
<div class="row">
<div class="col2">
<div class="col3">
<?php echo template::button('blogBack', [
'class' => 'buttonGrey',
'href' => helper::baseUrl() . $this->getUrl(0),
@ -113,7 +113,7 @@
'value' => 'Retour'
]); ?>
</div>
<div class="col2 offset8">
<div class="col3 offset6">
<?php echo template::button('blogEdit', [
'class' => 'buttonBlue',
'href' => helper::baseUrl() . $this->getUrl(0) . '/edit/' . $this->getUrl(1) . '/' . $_SESSION['csrf'],

View File

@ -32,7 +32,7 @@ class form extends common {
public static $pagination;
const FORM_VERSION = '1.8';
const FORM_VERSION = '1.9';
const TYPE_MAIL = 'mail';
const TYPE_SELECT = 'select';