Reac front end for psicometric app

login.php 2.4KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <head>
  2. <meta charset="utf-8">
  3. <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
  4. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  5. <title>Inicio de sesión - Dashboard</title>
  6. <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css" integrity="sha384-9gVQ4dYFwwWSjIDZnLEWnxCjeSWFphJiwGPXr1jddIhOegiu1FwO5qRGvFXOdJZ4" crossorigin="anonymous">
  7. <link rel="stylesheet" href="css/all.css">
  8. <link rel="stylesheet" href="css/font-awesome.min.css">
  9. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/malihu-custom-scrollbar-plugin/3.1.5/jquery.mCustomScrollbar.min.css">
  10. <script src="js/jquery.min.js"></script>
  11. <script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.4.0/Chart.min.js"></script>
  12. <link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/v/dt/dt-1.10.18/datatables.min.css"/>
  13. <script type="text/javascript" src="https://cdn.datatables.net/v/dt/dt-1.10.18/datatables.min.js"></script>
  14. <script defer src="https://use.fontawesome.com/releases/v5.0.13/js/solid.js" integrity="sha384-tzzSw1/Vo+0N5UhStP3bvwWPq+uvzCMfrN1fEFe+xBmv1C/AtVX5K0uZtmcHitFZ" crossorigin="anonymous"></script>
  15. <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css" integrity="sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU" crossorigin="anonymous">
  16. </head>
  17. <section class="inicio_sesion">
  18. <div class="page_login">
  19. <div class="form_login">
  20. <div class="logo">
  21. <img src="images/logo.png">
  22. </div>
  23. <div class="text_login">
  24. <p>Por favor ingresa en tu cuenta</p>
  25. </div>
  26. <div class="formulario_ingreso">
  27. <form>
  28. <input type="email" name="correo" placeholder="Correo electrónico" value="" required autocomplete="off">
  29. <input type="password" name="password" placeholder="Password" required autocomplete="new-password">
  30. <button class="login_btn" type="submit">Login</button>
  31. </form>
  32. </div>
  33. <div class="forgot_password">
  34. <a href="forgot-password.php">Olvidé mi contraseña</a>
  35. </div>
  36. <?php include('footer.php') ?>
  37. </div>
  38. </div>
  39. </section>