|
1 | 1 | @extends('layout') |
2 | 2 | @section('title') |
3 | | - <title>Welcome to {{ Config::get("app.app_name") }} - Email Verification Complete !!!</title> |
4 | | -@append |
5 | | -@section('scripts') |
6 | | - <script type="application/javascript"> |
7 | | - </script> |
| 3 | + <title>Welcome to {{ Config::get("app.app_name") }} - Email Verification Complete</title> |
8 | 4 | @append |
9 | 5 |
|
10 | 6 | @section('content') |
11 | | - <div class="container"> |
12 | | - <p> You successfully Verified Your Email Address !!!</p> |
13 | | - <p> Now proceed to <a target="_self" href="{!! URL::action("UserController@getLogin") !!}">Login</a>.</p> |
| 7 | + <div style="background: #FAFAF7; padding: 3rem 1rem; border-radius: 12px; min-height: 520px; width: 100%;"> |
| 8 | + |
| 9 | + <div style="max-width: 480px; margin: 0 auto; text-align: center;"> |
| 10 | + |
| 11 | + <div style="background: #FFFFFF; border-radius: 12px; border: 0.5px solid #E5E4DE; padding: 2.5rem 2rem;"> |
| 12 | + |
| 13 | + <div style="width: 56px; height: 56px; border-radius: 50%; background: #1D9E75; display: inline-flex; align-items: center; justify-content: center; margin: 0 0 1.25rem;"> |
| 14 | + <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24" fill="none" stroke="#FFFFFF" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"> |
| 15 | + <polyline points="20 6 9 17 4 12"></polyline> |
| 16 | + </svg> |
| 17 | + </div> |
| 18 | + |
| 19 | + <h1 style="font-size: 24px; font-weight: 500; margin: 0 0 0.5rem; color: #0A0A0A; letter-spacing: -0.01em;">Email verified.</h1> |
| 20 | + <p style="font-size: 15px; color: #5F5E5A; margin: 0 0 2rem; line-height: 1.6;">Your {{ Config::get("app.app_name") }} account is active and ready to use.</p> |
| 21 | + |
| 22 | + <div style="margin: 0 0 1rem;"> |
| 23 | + <a href="{!! URL::action('UserController@getLogin') !!}" target="_self" |
| 24 | + style="display: inline-block; background: #0A0A0A; color: #FFFFFF; text-decoration: none; font-size: 15px; font-weight: 500; padding: 11px 28px; border-radius: 8px;"> |
| 25 | + Continue to sign in → |
| 26 | + </a> |
| 27 | + </div> |
| 28 | + |
| 29 | + <p style="font-size: 13px; color: #888780; margin: 0; line-height: 1.6;">We've also sent next steps to your inbox.</p> |
| 30 | + |
| 31 | + </div> |
| 32 | + |
| 33 | + <p style="font-size: 13px; color: #888780; margin: 1.5rem 0 0; line-height: 1.6;"> |
| 34 | + Need help? <a href="mailto:{!! Config::get('app.help_email') !!}" style="color: #0C64C8; text-decoration: none;">{!! Config::get('app.help_email') !!}</a> |
| 35 | + </p> |
| 36 | + |
| 37 | + </div> |
| 38 | + |
14 | 39 | </div> |
15 | 40 | @endsection |
0 commit comments