aboutsummaryrefslogtreecommitdiff
path: root/app/views/auth/register.phtml
blob: 306679601af711291a35a5d23a88edd3f561ca38 (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
33
34
35
36
37
38
<div class="prompt">
    <h1><?php echo _t('gen.auth.registration'); ?></h1>

    <form method="post" action="<?php echo _url('user', 'create'); ?>">
        <div>
            <label class="group-name" for="new_user_name"><?php echo _t('gen.auth.username'), '<br />', _i('help'), ' ', _t('gen.auth.username.format'); ?></label>
            <input id="new_user_name" name="new_user_name" type="text" size="16" required="required" maxlength="16" autocomplete="off" pattern="[0-9a-zA-Z]{1,16}" />
        </div>

        <div>
            <label class="group-name" for="new_user_passwordPlain"><?php echo _t('gen.auth.password'), '<br />', _i('help'), ' ', _t('gen.auth.password.format'); ?></label>
            <div class="stick">
                <input type="password" id="new_user_passwordPlain" name="new_user_passwordPlain" required="required" autocomplete="off" pattern=".{7,}" />
                <a class="btn toggle-password" data-toggle="new_user_passwordPlain"><?php echo _i('key'); ?></a>
            </div>
            <noscript><b><?php echo _t('gen.js.should_be_activated'); ?></b></noscript>
        </div>

        <div>
            <label class="group-name" for="new_user_email"><?php echo _t('gen.auth.email'); ?></label>
            <input type="email" id="new_user_email" name="new_user_email" class="extend" required="required" autocomplete="off" />
        </div>

        <div>
            <?php
                $redirect_url = urlencode(Minz_Url::display(
                    array('c' => 'index', 'a' => 'index'),
                    'php', true
                ));
            ?>
            <input type="hidden" name="r" value="<?php echo $redirect_url; ?>" />
            <button type="submit" class="btn btn-important"><?php echo _t('gen.action.create'); ?></button>
            <a class="btn" href="<?php echo _url('index', 'index'); ?>"><?php echo _t('gen.action.cancel'); ?></a>
        </div>
    </form>

    <p><a href="<?php echo _url('index', 'about'); ?>"><?php echo _t('gen.freshrss.about'); ?></a></p>
</div>