summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-rw-r--r--app/Templates/user_login.php62
1 files changed, 33 insertions, 29 deletions
diff --git a/app/Templates/user_login.php b/app/Templates/user_login.php
index 948a19e7..9eb4fa17 100644
--- a/app/Templates/user_login.php
+++ b/app/Templates/user_login.php
@@ -1,38 +1,42 @@
-<div class="page-header">
- <h1><?= t('Sign in') ?></h1>
-</div>
+<div class="form-login">
-<?php if (isset($errors['login'])): ?>
- <p class="alert alert-error"><?= Helper\escape($errors['login']) ?></p>
-<?php endif ?>
+ <div class="page-header">
+ <h1><?= t('Sign in') ?></h1>
+ </div>
-<form method="post" action="?controller=user&amp;action=check" class="form-login">
+ <?php if (isset($errors['login'])): ?>
+ <p class="alert alert-error"><?= Helper\escape($errors['login']) ?></p>
+ <?php endif ?>
- <?= Helper\form_csrf() ?>
+ <form method="post" action="?controller=user&amp;action=check">
- <?= Helper\form_label(t('Username'), 'username') ?>
- <?= Helper\form_text('username', $values, $errors, array('autofocus', 'required')) ?><br/>
+ <?= Helper\form_csrf() ?>
- <?= Helper\form_label(t('Password'), 'password') ?>
- <?= Helper\form_password('password', $values, $errors, array('required')) ?>
+ <?= Helper\form_label(t('Username'), 'username') ?>
+ <?= Helper\form_text('username', $values, $errors, array('autofocus', 'required')) ?><br/>
- <?= Helper\form_checkbox('remember_me', t('Remember Me'), 1) ?><br/>
+ <?= Helper\form_label(t('Password'), 'password') ?>
+ <?= Helper\form_password('password', $values, $errors, array('required')) ?>
- <ul>
- <?php if (GOOGLE_AUTH): ?>
- <li>
- <a href="?controller=user&amp;action=google"><?= t('Login with my Google Account') ?></a>
- </li>
- <?php endif ?>
+ <?= Helper\form_checkbox('remember_me', t('Remember Me'), 1) ?><br/>
- <?php if (GITHUB_AUTH): ?>
- <li>
- <a href="?controller=user&amp;action=gitHub"><?= t('Login with my GitHub Account') ?></a>
- </li>
- <?php endif ?>
- </ul>
+ <ul>
+ <?php if (GOOGLE_AUTH): ?>
+ <li>
+ <a href="?controller=user&amp;action=google"><?= t('Login with my Google Account') ?></a>
+ </li>
+ <?php endif ?>
- <div class="form-actions">
- <input type="submit" value="<?= t('Sign in') ?>" class="btn btn-blue"/>
- </div>
-</form> \ No newline at end of file
+ <?php if (GITHUB_AUTH): ?>
+ <li>
+ <a href="?controller=user&amp;action=gitHub"><?= t('Login with my GitHub Account') ?></a>
+ </li>
+ <?php endif ?>
+ </ul>
+
+ <div class="form-actions">
+ <input type="submit" value="<?= t('Sign in') ?>" class="btn btn-blue"/>
+ </div>
+ </form>
+
+</div> \ No newline at end of file