diff options
Diffstat (limited to 'template/admin/html/auth.php')
-rw-r--r-- | template/admin/html/auth.php | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/template/admin/html/auth.php b/template/admin/html/auth.php index f5852c1..0435f72 100644 --- a/template/admin/html/auth.php +++ b/template/admin/html/auth.php @@ -1,15 +1,19 @@ <h1><?=$Language->template('authentication_text')?></h1> <p><?=$Language->template('authentication_desc')?></p> -<?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="<?=Application::getSecurityToken()?>" /> + <?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; ?> + <div class="flex"> <div class="flex-item"> <div class="form-icon-flex"><i class="fa fa-user-secret"></i></div> |