Advertisement
rickyc81

Untitled

Nov 28th, 2019
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.29 KB | None | 0 0
  1. <?php
  2. include 'config.php';
  3.  
  4.  
  5. ?>
  6.  
  7. <!doctype html>
  8. <html lang="it">
  9.   <head>
  10.     <!-- Required meta tags -->
  11.     <meta charset="utf-8">
  12.     <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  13.  
  14.     <!-- Bootstrap CSS -->
  15.     <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">
  16.  
  17.     <!-- Custom styles for this template -->
  18.     <link href="./src/css/login_css.css" rel="stylesheet">
  19.     <title>Si.Gest v1.0</title>
  20.   </head>
  21.   <body class="text-center">
  22.     <div class="corner-ribbon top-right sticky blue">Si.Gest 1.0</div>
  23.     <form class="form-signin" method="POST" action="validate.php" >
  24.       <!-- <img src="./img/LOGO_ANAS_FS_RGB.png" alt="" width="350" height="250"> -->
  25.       <h1 class="h3 mb-3 font-weight-normal">Log in</h1>
  26.       <label for="inputUser" class="sr-only">Username</label>
  27.       <input type="text" name="username"  id="inputUser" class="form-control" placeholder="Username" required autofocus>
  28.       <label for="inputPassword" class="sr-only">Password</label>
  29.       <input type="password" name="password"  id="inputPassword" class="form-control" placeholder="Password" required>
  30.       <div class="checkbox mb-3">
  31.         <label>
  32.           <input type="checkbox" value="remember-me"> Ricordami
  33.         </label>
  34.       </div>
  35.       <button class="btn btn-lg btn-primary btn-block" name="btnLogin" type="submit">Entra</button>
  36.       <p class="mt-5 mb-3 text-muted">&copy; 2019</p>
  37.     </form>
  38.  
  39.     <!-- JavaScript -->
  40.     <!-- jQuery -> then Popper.js -> Bootstrap JS -->
  41.     <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
  42.     <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
  43.     <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
  44.   </body>
  45. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement