50 lines
2.5 KiB
PHP
50 lines
2.5 KiB
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Bienvenido a OnAPB</title>
|
|
<style>
|
|
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: #333; margin: 0; padding: 0; background-color: #f4f4f4; }
|
|
.container { max-width: 600px; margin: 20px auto; background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
|
|
.header { background: linear-gradient(135deg, #cc0000 0%, #aa0000 100%); color: #fff; padding: 40px 20px; text-align: center; }
|
|
.header h1 { margin: 0; font-size: 28px; text-transform: uppercase; letter-spacing: 2px; }
|
|
.content { padding: 30px; }
|
|
.content h2 { color: #cc0000; margin-top: 0; }
|
|
.footer { background: #222; color: #888; text-align: center; padding: 20px; font-size: 12px; }
|
|
.btn { display: inline-block; padding: 12px 25px; background: #cc0000; color: #fff; text-decoration: none; border-radius: 6px; font-weight: bold; margin-top: 20px; }
|
|
.details { background: #f9f9f9; padding: 15px; border-radius: 8px; border-left: 4px solid #cc0000; margin: 20px 0; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="header">
|
|
<h1>ONAPB</h1>
|
|
<p>La nueva forma de vivir el básquet</p>
|
|
</div>
|
|
<div class="content">
|
|
<h2>¡Hola, {{ $user->nombre }}!</h2>
|
|
<p>Es un gusto darte la bienvenida a <strong>OnAPB</strong>, la plataforma oficial de la Asociación Paranaense de Básquetbol.</p>
|
|
|
|
<p>Te has registrado correctamente como <strong>{{ ucfirst($tipo) }}</strong>. Ya podés acceder a tu panel para ver tus QRs, noticias y beneficios exclusivos.</p>
|
|
|
|
<div class="details">
|
|
<strong>Tus datos registrados:</strong><br>
|
|
Nombre: {{ $user->nombre }} {{ $user->apellido }}<br>
|
|
DNI: {{ $user->dni ?? $user->documento }}<br>
|
|
Email: {{ $user->email }}
|
|
</div>
|
|
|
|
<p>Para ingresar al sistema, hacé clic en el siguiente botón:</p>
|
|
<center>
|
|
<a href="{{ url('/') }}" class="btn">INGRESAR AL PANEL</a>
|
|
</center>
|
|
</div>
|
|
<div class="footer">
|
|
© {{ date('Y') }} OnAPB - Asociación Paranaense de Básquetbol.<br>
|
|
Este es un correo automático, por favor no lo respondas.
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|