diff options
Diffstat (limited to 'app/Template/user')
-rw-r--r-- | app/Template/user/authentication.php | 3 | ||||
-rw-r--r-- | app/Template/user/external.php | 20 |
2 files changed, 5 insertions, 18 deletions
diff --git a/app/Template/user/authentication.php b/app/Template/user/authentication.php index 20c3d372..1f2d2a69 100644 --- a/app/Template/user/authentication.php +++ b/app/Template/user/authentication.php @@ -8,8 +8,7 @@ <?= $this->form->hidden('id', $values) ?> <?= $this->form->hidden('username', $values) ?> - <?= $this->form->label(t('Google Id'), 'google_id') ?> - <?= $this->form->text('google_id', $values, $errors) ?> + <?= $this->hook->render('template:user:authentication:form', array('values' => $values, 'errors' => $errors, 'user' => $user)) ?> <?= $this->form->label(t('Github Id'), 'github_id') ?> <?= $this->form->text('github_id', $values, $errors) ?> diff --git a/app/Template/user/external.php b/app/Template/user/external.php index 8b1d3c46..8c9a0259 100644 --- a/app/Template/user/external.php +++ b/app/Template/user/external.php @@ -2,21 +2,7 @@ <h2><?= t('External authentications') ?></h2> </div> -<?php if (GOOGLE_AUTH): ?> - <h3><i class="fa fa-google"></i> <?= t('Google Account') ?></h3> - - <p class="listing"> - <?php if ($this->user->isCurrentUser($user['id'])): ?> - <?php if (empty($user['google_id'])): ?> - <?= $this->url->link(t('Link my Google Account'), 'oauth', 'google', array(), true) ?> - <?php else: ?> - <?= $this->url->link(t('Unlink my Google Account'), 'oauth', 'unlink', array('backend' => 'Google'), true) ?> - <?php endif ?> - <?php else: ?> - <?= empty($user['google_id']) ? t('No account linked.') : t('Account linked.') ?> - <?php endif ?> - </p> -<?php endif ?> +<?php $html = $this->hook->render('template:user:external', array('user' => $user)) ?> <?php if (GITHUB_AUTH): ?> <h3><i class="fa fa-github"></i> <?= t('Github Account') ?></h3> @@ -50,6 +36,8 @@ </p> <?php endif ?> -<?php if (! GOOGLE_AUTH && ! GITHUB_AUTH && ! GITLAB_AUTH): ?> +<?php if (empty($html) && ! GITHUB_AUTH && ! GITLAB_AUTH): ?> <p class="alert"><?= t('No external authentication enabled.') ?></p> +<?php else: ?> + <?= $html ?> <?php endif ?> |