Advertisement
Guest User

Untitled

a guest
Jul 30th, 2014
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. <div class="container">
  2. <form action="<?php echo $this->webroot?>users/login" method="post" class="form-signin">
  3. <label class="control-label"><?php echo __('Benutzername'); ?>:</label>
  4. <input type="text" id="user" class="form-control" placeholder="<?php echo __('Benutzername'); ?>" name="username" autofocus>
  5. <br>
  6. <label class="control-label"><?php echo __('Passwort'); ?>:</label>
  7. <input type="password" id="pass" class="form-control" placeholder="<?php echo __('Passwort'); ?>" name="password" >
  8. <!--<input type="hidden" id="referer" name="referer" value="<?php echo $origURL; ?>">-->
  9. <button class="btn btn-lg btn-primary btn-block" type="submit"><?php echo __('Einloggen'); ?></button>
  10. <?php
  11. if ( Configure::read("general.registration_enabled") ){
  12. echo '<small>' . $this->Html->link(__('Registrieren'), '/users/register') . '</small>';
  13. }
  14. if ( Configure::read("general.allow_lost_password") ){
  15. echo '<small class="pull-right">' . $this->Html->link(__('Passwort vergessen?'), '/users/recover') . '</small>';
  16. }
  17. ?>
  18. </form>
  19. <?php echo $this->element('messages'); ?>
  20. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement