diff options
author | Frédéric Guillot <fred@kanboard.net> | 2014-05-22 12:28:28 -0400 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2014-05-22 12:28:28 -0400 |
commit | 2230dd4e6b148346c0ec596b9e3e12996a762ed8 (patch) | |
tree | ef99ccde4f8b18592a3fb06a6ec45162c501fe38 /templates/user_login.php | |
parent | a750b8ab2a0cb715da6fd9025a7ec8375db68a4d (diff) |
Code refactoring (add autoloader and change files organization)
Diffstat (limited to 'templates/user_login.php')
-rw-r--r-- | templates/user_login.php | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/templates/user_login.php b/templates/user_login.php deleted file mode 100644 index 878170e3..00000000 --- a/templates/user_login.php +++ /dev/null @@ -1,28 +0,0 @@ -<div class="page-header"> - <h1><?= t('Sign in') ?></h1> -</div> - -<?php if (isset($errors['login'])): ?> - <p class="alert alert-error"><?= Helper\escape($errors['login']) ?></p> -<?php endif ?> - -<form method="post" action="?controller=user&action=check" class="form-login"> - - <?= Helper\form_label(t('Username'), 'username') ?> - <?= Helper\form_text('username', $values, $errors, array('autofocus', 'required')) ?><br/> - - <?= Helper\form_label(t('Password'), 'password') ?> - <?= Helper\form_password('password', $values, $errors, array('required')) ?> - - <?= Helper\form_checkbox('remember_me', t('Remember Me'), 1) ?><br/> - - <?php if (GOOGLE_AUTH): ?> - <p> - <a href="?controller=user&action=google"><?= t('Login with my Google Account') ?></a> - </p> - <?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 |