summaryrefslogtreecommitdiff
path: root/app/Template/user/login.php
blob: c2e3914ea3e6fedb06b7c00158cf4728060b561d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<div class="form-login">

    <?php if (isset($errors['login'])): ?>
        <p class="alert alert-error"><?= $this->e($errors['login']) ?></p>
    <?php endif ?>

    <form method="post" action="<?= $this->u('user', 'check', array('redirect_query' => urlencode($redirect_query))) ?>">

        <?= $this->formCsrf() ?>

        <?= $this->formLabel(t('Username'), 'username') ?>
        <?= $this->formText('username', $values, $errors, array('autofocus', 'required')) ?><br/>

        <?= $this->formLabel(t('Password'), 'password') ?>
        <?= $this->formPassword('password', $values, $errors, array('required')) ?>

        <?= $this->formCheckbox('remember_me', t('Remember Me'), 1) ?><br/>

        <?php if (GOOGLE_AUTH): ?>
            <?= $this->a(t('Login with my Google Account'), 'user', 'google') ?>
        <?php endif ?>

        <?php if (GITHUB_AUTH): ?>
            <?= $this->a(t('Login with my GitHub Account'), 'user', 'gitHub') ?>
        <?php endif ?>

        <div class="form-actions">
            <input type="submit" value="<?= t('Sign in') ?>" class="btn btn-blue"/>
        </div>
    </form>

</div>