25 lines
963 B
PHP
Executable File
25 lines
963 B
PHP
Executable File
<!DOCTYPE html>
|
|
<html lang="es">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Gestor de Consultas</title>
|
|
<style>
|
|
body { font-family: Arial, sans-serif; margin: 0; padding: 20px; background-color: #f4f4f9; }
|
|
.container { max-width: 800px; margin: auto; background: white; padding: 20px; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
|
|
.nav { margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid #ffb6c1; }
|
|
.nav a { margin-right: 15px; text-decoration: none; color: #333; font-weight: bold; }
|
|
.btn { padding: 10px 15px; background-color: #ffb6c1; color: #333; border: none; border-radius: 4px; cursor: pointer; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="nav">
|
|
<a href="/consultas">Mis Consultas</a>
|
|
<a href="/consultas/create">Nueva Consulta</a>
|
|
</div>
|
|
|
|
@yield('contenido')
|
|
|
|
</div>
|
|
</body>
|
|
</html> |