diff options
Diffstat (limited to 'app/Template')
-rw-r--r-- | app/Template/user/create_remote.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/Template/user/create_remote.php b/app/Template/user/create_remote.php index 1d04bc87..559d3d72 100644 --- a/app/Template/user/create_remote.php +++ b/app/Template/user/create_remote.php @@ -21,13 +21,13 @@ <?= $this->form->email('email', $values, $errors) ?><br/> <?= $this->form->label(t('Google Id'), 'google_id') ?> - <?= $this->form->password('google_id', $values, $errors) ?><br/> + <?= $this->form->text('google_id', $values, $errors) ?><br/> <?= $this->form->label(t('Github Id'), 'github_id') ?> - <?= $this->form->password('github_id', $values, $errors) ?><br/> + <?= $this->form->text('github_id', $values, $errors) ?><br/> <?= $this->form->label(t('Gitlab Id'), 'gitlab_id') ?> - <?= $this->form->password('gitlab_id', $values, $errors) ?><br/> + <?= $this->form->text('gitlab_id', $values, $errors) ?><br/> </div> <div class="form-column"> |