File "camara.php"
Full Path: C:/wamp64/www/CALIDADWEB/CALIDADWEB/FRONTED/HTML/camara.php
File size: 4.04 KB
MIME-type: text/html
Charset: utf-8
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LAVANDERIA · Redirección</title>
<!-- Fuente moderna de Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap" rel="stylesheet">
<!-- Enlace al archivo JavaScript externo (opcional, también puedes poner el código inline) -->
<script src="camara.js" defer></script>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Poppins', sans-serif;
background: linear-gradient(135deg, #ff6822 0%, #fc3a3a 100%);
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
margin: 0;
padding: 20px;
}
.card {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border-radius: 20px;
padding: 40px 30px;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 6px 12px rgba(0, 0, 0, 0.1);
max-width: 500px;
width: 100%;
text-align: center;
transition: transform 0.3s ease;
}
.card:hover {
transform: translateY(-5px);
}
h1 {
font-size: 2.5rem;
font-weight: 700;
color: #333;
margin-bottom: 10px;
letter-spacing: -0.5px;
}
.subtitle {
font-size: 1.1rem;
font-weight: 300;
color: #666;
margin-bottom: 30px;
border-bottom: 2px solid #f0f0f0;
padding-bottom: 20px;
}
.icon {
font-size: 4rem;
margin-bottom: 15px;
line-height: 1;
}
.buttons {
display: flex;
flex-direction: column;
gap: 15px;
margin-top: 20px;
}
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
padding: 14px 24px;
font-size: 1.1rem;
font-weight: 500;
text-decoration: none;
border: none;
border-radius: 50px;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.btn-primary {
background: #4CAF50;
color: white;
}
.btn-primary:hover {
background: #45a049;
box-shadow: 0 6px 12px rgba(76, 175, 80, 0.3);
transform: scale(1.02);
}
.btn-secondary {
background: #008CBA;
color: white;
}
.btn-secondary:hover {
background: #0077a3;
box-shadow: 0 6px 12px rgba(0, 140, 186, 0.3);
transform: scale(1.02);
}
.footer-note {
margin-top: 30px;
font-size: 0.9rem;
color: #999;
}
</style>
</head>
<body>
<div class="card">
<div class="icon">🧼</div>
<h1>LAVANDERÍA</h1>
<div class="subtitle">Acceso rápido al sistema</div>
<div class="buttons">
<!-- Enlace directo (abre en nueva pestaña) -->
<a href="http://192.200.100.40:8002/LAVANDERIA/public/" target="_blank" class="btn btn-primary">
🔗 Ir con enlace directo
</a>
<!-- Botón con JavaScript (redirige en la misma pestaña) -->
</div>
<div class="footer-note">
⚡ Haz clic y serás redirigido al panel de control
</div>
</div>
<!-- También puedes incluir el script aquí mismo si prefieres -->
<script src="camara.js"></script>
</body>
</html>