Advertisement
Guest User

Untitled

a guest
Jan 24th, 2015
256
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.93 KB | None | 0 0
  1. <form action="" method="post">
  2.             <?php
  3.             $alerts = $this->getAlerts();
  4.             if($alerts != '')
  5.             {
  6.                 echo '<ul class="alerts">' . $alerts . '</ul>';      
  7.                 }
  8.                 ?>
  9.             <p>
  10.                 <label for="username">Login</label>
  11.                 <input type="text" name="username" value="<?php echo $this->getData('input_user');?>"/>
  12.             </p>
  13.               <p>
  14.                 <label for="password">Hasło</label>
  15.                 <input type="password" name="password" value="<?php echo $this->getData('input_password');?>"/>
  16.             </p>
  17.        
  18.            
  19.             <button type="submit" name="submit" class="submit"><span class="glyphicon glyphicon-lock"></span>Zaloguj</button>
  20.             <button type="button" class="btn btn-success"><span class="glyphicon glyphicon-arrow-left"></span> Wyjdź</button>
  21.        
  22.         </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement