46 lines
1.3 KiB
HTML
46 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="es">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Registrar Concierto</title>
|
|
|
|
<!-- CSS de diseño -->
|
|
<link rel="stylesheet" href="css/conciertos.css">
|
|
<link rel="stylesheet" href="css/formulario.css">
|
|
</head>
|
|
<body>
|
|
|
|
<!-- Navbar -->
|
|
<nav>
|
|
<a class="navbar-brand" href="#">TicketFei</a>
|
|
<div class="nav-links">
|
|
<a href="ventanaInsertarConcierto.html">Crear Conciertos</a>
|
|
<a href="ventanaConciertos.html">Ver Conciertos</a>
|
|
<a href="#">Reporte Ventas</a>
|
|
</div>
|
|
</nav>
|
|
|
|
<!-- Contenedor del formulario -->
|
|
<div class="form-container">
|
|
<h2>Registrar Concierto</h2>
|
|
<form id="formulario">
|
|
<label for="nombre_concierto">Nombre del Concierto:</label>
|
|
<input type="text" id="nombre_concierto" required>
|
|
|
|
<label for="artista">Artista:</label>
|
|
<input type="text" id="artista" required>
|
|
|
|
<label for="fecha">Fecha del Concierto:</label>
|
|
<input type="date" id="fecha" required>
|
|
|
|
<button type="submit">Registrar</button>
|
|
</form>
|
|
</div>
|
|
|
|
<!-- JavaScript -->
|
|
<script src="js/crearConciertos.js"></script>
|
|
|
|
</body>
|
|
</html>
|