source: trunk/services/templates/reset_password.ihtml @ 497

Last change on this file since 497 was 497, checked in by anonymous, 10 years ago

Beginning the process of adapting codebase to foundation styles.

File size: 1.2 KB
Line 
1<header class="row">
2    <div class="large-12 columns">
3        <h1><?php echo $nav->get('title'); ?></h1>
4        <p><?php echo _("If you have forgotten your password enter your username here. A new password will be emailed to you."); ?></p>
5        <?php $fv->printErrorMessages(); ?>
6    </div>
7</header>
8<main role="main">
9    <form method="post" action="<?php echo oTxt($_SERVER['PHP_SELF']); ?>" class="sc-form">
10        <?php $app->printHiddenSession(); ?>
11        <input type="hidden" name="op" value="reset" />
12        <div class="row<?php $fv->err('username'); ?>">
13            <div class="large-6 columns">
14                <label for="username"><?php echo _("Username"); ?></label>
15                <input type="text" name="username" id="username" class="sc-medium" value="<?php echo oTxt($frm['username']); ?>" />
16            </div>
17        </div>
18        <div class="row sc-submit-buttons">
19            <div class="large-6 columns">
20                <?php
21                HTML::printButtons(array(array(
22                    'name' => 'submit',
23                    'value' => _("Submit"),
24                    'class' => 'small button',
25                    'accesskey' => 's'
26                )));
27                ?>
28            </div>
29        </div>
30    </form>
31</main>
Note: See TracBrowser for help on using the repository browser.