82 lines
2.2 KiB
PHP
82 lines
2.2 KiB
PHP
<!doctype html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<title>{{__('Password Reset')}}</title>
|
|
<style>
|
|
.email-container{
|
|
justify-content: center;
|
|
/*display: grid;*/
|
|
background-color: #ffffff;
|
|
padding: 0 5%
|
|
}
|
|
.email-header{
|
|
text-align: center;
|
|
}
|
|
.email-header{
|
|
background-color: green;
|
|
padding: 10px;
|
|
}
|
|
.hyper-link
|
|
/* {
|
|
color: orangered;
|
|
}*/
|
|
.hyper-link:hover
|
|
{
|
|
color: #1c881c;
|
|
}
|
|
.email-btn{
|
|
border: 1px solid orange;
|
|
padding: 10px;
|
|
border-radius: 5px;
|
|
background-color: orange;
|
|
color: white;
|
|
text-decoration: none;
|
|
display: grid;
|
|
justify-content: center;
|
|
margin: 0 15rem;
|
|
text-align: center;
|
|
}
|
|
|
|
.email-btn:hover{
|
|
border: 1px solid #2ec618;
|
|
background-color: #22b31d;
|
|
color: #f4f4f4;
|
|
}
|
|
|
|
hr{
|
|
border: 1px solid #bbbbbb;
|
|
width: 100%
|
|
}
|
|
|
|
.copyright{
|
|
color: #248c48;
|
|
font-size: 11px;
|
|
text-align: center;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="email-container">
|
|
<h2 class="email-header">{{ config('app.name') }}</h2>
|
|
|
|
<div class="email-body">
|
|
<p>{{ __('You are having this email because you have requested for a password reset.') }}</p>
|
|
<p>{{ __('Your verification code is: ') }}<b>{{ $data['code'] }}</b></p>
|
|
|
|
<p>{{ __('This password reset code will expire in 60 minutes.') }}</p>
|
|
|
|
<p>{{ __('If you did not request a password reset, no further action is required.') }}</p>
|
|
|
|
<p>{{ __('Regards') }},<br> {{ config('app.name') }}</p>
|
|
</div>
|
|
|
|
<hr>
|
|
|
|
<p class="copyright">© {{ config('app.name') }}. {{ __('All right reserved') }}.</p>
|
|
</div>
|
|
</body>
|
|
</html>
|