Guest User

Untitled

a guest
Oct 29th, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.32 KB | None | 0 0
  1.     <?php echo $formView->renderBegin(); ?>
  2.         <div class="title">Log In</div>
  3.         <div class="input">
  4.             <label class="visible">Username:</label>
  5.             <div><input type="text" name="<?php echo $formView['username']->name; ?>" id="usernameFInput" maxlength="<?php echo $formView['username']->maxlength; ?>" tabindex="1" value="<?php echo $username ?>"/></div>
  6.         </div>
  7.         <div class="input">
  8.             <label class="visible">Password:</label>
  9.             <div><input class="passwordField" type="password" name="<?php echo $formView['password']->name; ?>" id="passwordFInput" maxlength="<?php echo $formView['username']->maxlength; ?>" tabindex="2" /><input class="tmpField" type="text" name="tmp" /></div>
  10.         </div>
  11.         <div id="remMe">
  12.             Remember me?
  13.             <div id="remMeBut" class="<?php echo $remember?>"></div>
  14.             <input id="remMeFField" type="hidden" name="<?php echo $formView['rememberme']->name; ?>" value='<?php echo $remember; ?>'/>
  15.         </div>
  16.         <div id="login" class="submitButton">
  17.             <div class="button" onclick="gLoginSubmit();"><?php echo $formView->buttons['login']->label; ?></div>
  18.             <input id="loginFSubmit" name="<?php echo $formView->buttons['login']->name; ?>" type="submit" value="<?php echo $formView->buttons['login']->label; ?>" />
  19.         </div>
  20.         <a href="#" onclick="return gLoginLostClick();" id="lostLabel">Lost your login details?</a>
Add Comment
Please, Sign In to add comment