Generation

fix invalid codeTue, 04 Apr 2023

<!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Login</title> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/5.3.0-alpha1/css/bootstrap.min.css" integrity="sha384-KyZXEAg3QhqLMpG8r+Knujsl5/6en8XCp+HHAAK5GSLf2xlYtvJ8U2Q4U+9cuEnJoa3" crossorigin="anonymous"> <link rel="stylesheet" href="css/style.css"> </head> <body> <div class="container" style="text-align: center;"> <div class="row"> <div class="col-md-6 offset-md-3"> <img src="img/logo.png" alt="Logo" class="img-fluid" id="logo"> <h1 class="text-center">Inicio de sesión</h1> <form action="dashboard.php" method="post"> <div class="mb-3"> <label for="rut" class="form-label">Rut</label> <input type="text" class="form-control" id="rut" name="rut" placeholder="Ingresa tú rut" required> </div> <div class="mb-3"> <label for="password" class="form-label">Clave</label> <input type="password" class="form-control" id="password" name="password" placeholder="Ingresa tú Contraseña" required> </div> <div class="text-center"> <button type="submit" class="btn btn-primary">Iniciar sesión</button> </div> </form> </div> </div> </div> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/5.3.0-alpha1/js/bootstrap.bundle.min.js" integrity="sha384-pzjw8f+ua7Kw1TIq0v8FqFjcJ6pajs/rfdfs3SO+kD4Ck5BdPtF+to8xMp9Mvc0v" crossorigin="anonymous"></script> </body> </html>

* Removed useless code:

Questions about programming?Chat with your personal AI assistant