29 lines
929 B
HTML
29 lines
929 B
HTML
<!DOCTYPE html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Login - TicketCompany</title>
|
|
<link rel="stylesheet" href="css/main.css">
|
|
</head>
|
|
<body>
|
|
<div class="login-container">
|
|
<h2>TicketCompany</h2>
|
|
<h2>Iniciar Sesión</h2>
|
|
<?php if(isset($_GET['error'])): ?>
|
|
<div id="error"><?php echo htmlspecialchars($_GET['error']); ?></div>
|
|
<?php endif; ?>
|
|
<form id="loginForm" action="controladores/login.php" method="post">
|
|
<div class="input-group">
|
|
<label for="email">Correo electrónico</label>
|
|
<input type="email" id="email" name="email" required>
|
|
</div>
|
|
<div class="input-group">
|
|
<label for="password">Contraseña</label>
|
|
<input type="password" id="password" name="password" required>
|
|
</div>
|
|
<button type="submit">Ingresar</button>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html>
|