summaryrefslogtreecommitdiff
path: root/app/Template/auth
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-07-16 20:35:56 -0400
committerFrederic Guillot <fred@kanboard.net>2015-07-16 20:35:56 -0400
commitede1f1d9b0c06a05845f4125d59c97c29b6d9842 (patch)
tree2fc9f21c586501d43440dace17e71bfb40618bfc /app/Template/auth
parent12036aa21f4308aca4d816864b357f9627a0f437 (diff)
Refactoring of Github authentication (oauth url change)
Diffstat (limited to 'app/Template/auth')
-rw-r--r--app/Template/auth/index.php16
1 files changed, 10 insertions, 6 deletions
diff --git a/app/Template/auth/index.php b/app/Template/auth/index.php
index ed923f07..9dcdfa37 100644
--- a/app/Template/auth/index.php
+++ b/app/Template/auth/index.php
@@ -16,12 +16,16 @@
<?= $this->form->checkbox('remember_me', t('Remember Me'), 1, true) ?><br/>
- <?php if (GOOGLE_AUTH): ?>
- <?= $this->url->link(t('Login with my Google Account'), 'oauth', 'google') ?>
- <?php endif ?>
-
- <?php if (GITHUB_AUTH): ?>
- <?= $this->url->link(t('Login with my GitHub Account'), 'user', 'gitHub') ?>
+ <?php if (GOOGLE_AUTH || GITHUB_AUTH): ?>
+ <ul>
+ <?php if (GOOGLE_AUTH): ?>
+ <li><?= $this->url->link(t('Login with my Google Account'), 'oauth', 'google') ?></li>
+ <?php endif ?>
+
+ <?php if (GITHUB_AUTH): ?>
+ <li><?= $this->url->link(t('Login with my Github Account'), 'oauth', 'gitHub') ?></li>
+ <?php endif ?>
+ </ul>
<?php endif ?>
<div class="form-actions">