Advertisement
Guest User

Body

a guest
Nov 23rd, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. <div class="container">
  2. <?php echo validation_errors(); ?>
  3. <?php
  4. if(isset($message)){
  5. ?>
  6. <div class="alert alert-danger"><?php echo $message; ?></div>
  7. <?php } ?>
  8. <?php
  9. $attributes = array('class' => 'form-signin', 'id' => 'login-form');
  10. echo form_open('login/index', $attributes);
  11. ?>
  12. <h2 class="form-signin-heading">Ingreso de usaurios</h2>
  13. <label for="inputEmail" class="sr-only">Email</label>
  14. <input type="text" name="inputEmail" class="form-control" placeholder="Email address" value="<?php echo set_value('inputEmail'); ?>">
  15. <label for="inputPassword" class="sr-only">Password</label>
  16. <input type="password" name="inputPassword" class="form-control" placeholder="Password" value="<?php echo set_value('inputPassword'); ?>">
  17. <button class="btn btn-lg btn-primary btn-block" type="submit">Ingresar</button>
  18. </form>
  19. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement