Ignore:
Timestamp:
Sep 15, 2014 9:44:27 PM (10 years ago)
Author:
anonymous
Message:

Beginning the process of adapting codebase to foundation styles.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/services/templates/reset_password.ihtml

    r189 r497  
    1 <p><?php echo _("If you have forgotten your password enter your username here. A new password will be emailed to you."); ?></p>
    2 
    3 <form method="post" action="<?php echo oTxt($_SERVER['PHP_SELF']); ?>" class="sc-form">
    4     <?php $app->printHiddenSession(); ?>
    5     <input type="hidden" name="op" value="reset" />
    6     <div class="sc-form-row<?php $fv->err('username'); ?>">
    7         <label for="username"><?php echo _("Username"); ?></label>
    8         <input type="text" name="username" id="username" class="sc-medium" value="<?php echo oTxt($frm['username']); ?>" />
     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(); ?>
    96    </div>
    10     <div class="sc-form-row sc-submit-buttons sc-clearboth">
    11         <input type="submit" value="<?php echo _("Submit"); ?>" />
    12     </div>
    13 </form>
     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 TracChangeset for help on using the changeset viewer.