Advertisement
xlujiax

index.php

Dec 3rd, 2019
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.16 KB | None | 0 0
  1. //Index.php
  2. <html>
  3.     <head>
  4.         <title>Acceso al Sistema</title>
  5.         <meta charset="UTF-8">
  6.         <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7.             <!-- Bootstrap core CSS -->
  8.                 <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
  9.  
  10.         <!-- Custom styles for this template -->
  11.             <link REL=styleSheet HREF="css/style.css" TYPE="text/css" MEDIA=screen>
  12.  
  13.         <link href="css/login2.css" rel="stylesheet" TYPE="text/css" MEDIA=screen>
  14.     </head>
  15.     <body>
  16.         <div class="container">
  17.             <div class="d-flex justify-content-md-center h-50">
  18.                 <div class= "card">
  19.                     <form class="form-signin" action="controller/ControllerValidarAcceso.php" method="post">
  20.                       <input type="hidden" name="${_csrf.parameterName}" value="${_csrf.token}"/>
  21.                         <h2 class="form-signin-heading">TuLimaPass</h2>
  22.                         <div> Usuario:
  23.                         <label for="inputEmail" class="sr-only">Username</label>
  24.                         <input type="text" class="form-control" placeholder="Username" name="username" id="username"/>
  25.                         </div>
  26.                         <div> Contraseña:
  27.                         <label for="inputPassword" class="sr-only">Password</label>
  28.                         <input type="password" class="form-control" placeholder="Password" name="password" id="password"/>
  29.                         </div>
  30.                         <button class="btn btn-lg btn-primary btn-block" type="submit" name="signin">
  31.                             <span class="glyphicon glyphicon-log-in" aria-hidden="true"></span> Ingresar
  32.                         </button>                        
  33.                         <h6 class="form-signin-heading"><a href="view/registro.php">Registrese...</a></h6>                        
  34.                     </form>
  35.                 </div>
  36.             </div>
  37.         </div> <!-- /container -->
  38.     </body>    
  39. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement