35 lines
1.5 KiB
PHP
Executable File
35 lines
1.5 KiB
PHP
Executable File
<!DOCTYPE html>
|
|
<html lang="it">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<style>
|
|
body { font-family: 'Segoe UI', Tahoma, sans-serif; line-height: 1.6; color: #333; }
|
|
.container { max-width: 600px; margin: 0 auto; padding: 20px; }
|
|
.header { background: #28a745; color: white; padding: 20px; text-align: center; border-radius: 5px 5px 0 0; }
|
|
.body { padding: 30px; background: #f9f9f9; border: 1px solid #ddd; }
|
|
.button { display: inline-block; padding: 12px 30px; background: #28a745; color: white; text-decoration: none; border-radius: 5px; font-weight: bold; }
|
|
.footer { margin-top: 20px; font-size: 12px; color: #999; text-align: center; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="header">
|
|
<h2><?php echo e(e($appName)); ?></h2>
|
|
</div>
|
|
<div class="body">
|
|
<p>Ciao <strong><?php echo e(e($user->name)); ?></strong>,</p>
|
|
<p>Hai richiesto il reset della password per il tuo account.</p>
|
|
<p style="text-align: center; margin: 30px 0;">
|
|
<a href="<?php echo e($resetUrl); ?>" class="button">Reimposta Password</a>
|
|
</p>
|
|
<p>Se non hai richiesto tu il reset, ignora questa email.</p>
|
|
<p>Il link è valido per 60 minuti.</p>
|
|
</div>
|
|
<div class="footer">
|
|
© <?php echo e(date('Y')); ?> <?php echo e(e($appName)); ?>
|
|
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
<?php /**PATH /var/www/html/glastree/resources/views/auth/emails/reset-password.blade.php ENDPATH**/ ?>
|