1
0

email_verify.blade.php 680 B

12345678910111213141516171819202122232425262728293031
  1. @component('mail::message')
  2. <div class="otcontainer">
  3. ## Verify Your Email Address
  4. <p class="ottext">
  5. Hello,
  6. </p>
  7. <p class="ottext">
  8. Thank you for signing up to {{config('pixelfed.domain.app')}}!
  9. </p>
  10. <p class="ottext">
  11. To complete your registration, please enter the following verification code:
  12. </p>
  13. <div class="otcode">
  14. {{ $code }}
  15. </div>
  16. <p class="ottext">
  17. This code will expire in 4 hours. If you didn't request this verification, please ignore this email.
  18. </p>
  19. <div class="otfooter">
  20. <p>If you're having trouble with the verification code, please contact our <a href="{{route('site.help')}}">support team</a>.</p>
  21. </div>
  22. </div>
  23. @endcomponent