diff options
author | Frédéric Guillot <fred@kanboard.net> | 2014-11-08 13:33:07 -0500 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2014-11-08 13:33:07 -0500 |
commit | 20c8342503b40e2b6a5d2f635d8efc82b7ae6bae (patch) | |
tree | 6913ff7b89266116974951811e5e289cd2ac1032 /app/Template/user_login.php | |
parent | 30c7e961695b0751c75aea8f9cb6b02583631488 (diff) |
Change form styles
Diffstat (limited to 'app/Template/user_login.php')
-rw-r--r-- | app/Template/user_login.php | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/app/Template/user_login.php b/app/Template/user_login.php index cf92cd4d..a8e8fc15 100644 --- a/app/Template/user_login.php +++ b/app/Template/user_login.php @@ -1,8 +1,4 @@ -<div class="form-login"> - - <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> @@ -20,19 +16,13 @@ <?= Helper\form_checkbox('remember_me', t('Remember Me'), 1) ?><br/> - <ul> <?php if (GOOGLE_AUTH): ?> - <li> - <a href="?controller=user&action=google"><?= t('Login with my Google Account') ?></a> - </li> + <a href="?controller=user&action=google"><?= t('Login with my Google Account') ?></a> <?php endif ?> <?php if (GITHUB_AUTH): ?> - <li> - <a href="?controller=user&action=gitHub"><?= t('Login with my GitHub Account') ?></a> - </li> + <a href="?controller=user&action=gitHub"><?= t('Login with my GitHub Account') ?></a> <?php endif ?> - </ul> <div class="form-actions"> <input type="submit" value="<?= t('Sign in') ?>" class="btn btn-blue"/> |