Your IP : 216.73.217.77


Current Path : /home/users/unlimited/www/medico.codeskitter.site/resources/views/mail/
Upload File :
Current File : /home/users/unlimited/www/medico.codeskitter.site/resources/views/mail/registration.blade.php

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <style>
    body {
      font-family: Arial, sans-serif;
      background-color: #f4f4f4;
      margin: 0;
      padding: 0;
    }

    .container {
      max-width: 600px;
      margin: 20px auto;
      background-color: #fff;
      padding: 20px;
      border-radius: 5px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

    h1 {
      color: #333;
    }

    p {
      color: #666;
    }

    .button {
      display: inline-block;
      padding: 10px 20px;
      background-color: #007BFF;
      color: #fff;
      text-decoration: none;
      border-radius: 3px;
    }
  </style>
</head>
<body>
  <div class="container">
    <h1>{{ __('Hi,') }} {{ $data['name'] ?? '' }}. {{ __('Welcome to') }} {{ env('APP_NAME') }}!</h1>
    <p>{{ __('Your account has been created successfully.') }}</p>

    <p><strong>{{ __('OTP:') }}</strong> {{ __('Dear') }} {{ $data['name'] ?? '' }}, {{ __('your OTP code is') }} <b class="text-dark">{{ $data['code'] ?? '' }}</b>. {{ __('Please do not share this PIN with anyone') }}.</p>

    <p>{{ __('Best Regards,') }}<br>{{ env('APP_NAME') }}</p>
  </div>
</body>
</html>