39 lines
2.1 KiB
PHP
39 lines
2.1 KiB
PHP
@extends('layout.mail')
|
|
|
|
@section('content')
|
|
<tbody>
|
|
<tr style="font-weight:300">
|
|
<td style="width:3.2%;max-width:30px;"></td>
|
|
<td style="max-width:480px;text-align:left;">
|
|
<h1 style="font-size: 20px; line-height: 36px; margin: 0px 0px 22px;">
|
|
{{ __('mail.retrieve_password_title') }}
|
|
</h1>
|
|
<p style="line-height: 24px; margin: 6px 0px 0px; overflow-wrap: break-word; word-break: break-all;">
|
|
<span style="color: rgb(51, 51, 51); font-size: 14px;">{{ __('mail.retrieve_password_text') }}
|
|
<span style="font-weight: bold;">{{ __('mail.not_oneself') }}</span>
|
|
</span>
|
|
</p>
|
|
<p style="line-height: 24px; margin: 6px 0px 0px; overflow-wrap: break-word; word-break: break-all;">
|
|
<span style="color: rgb(51, 51, 51); font-size: 14px;">{{ __('shop/forgotten.verification_code') }}:
|
|
<span style="font-weight: bold;">{{ $code }}</span>
|
|
</span>
|
|
</p>
|
|
<p style="font-size: 14px; color: rgb(51, 51, 51); line-height: 24px; margin: 6px 0px 0px; word-wrap: break-word; word-break: break-all;">
|
|
<a href="{{ $is_admin ? admin_route('forgotten.index') : shop_route('forgotten.index') }}?code={{ $code }}&email={{ $email }}" title="" style="font-size: 16px; line-height: 45px; display: block; background-color: #fd560f; color: rgb(255, 255, 255); text-align: center; text-decoration: none; margin-top: 20px; border-radius: 3px;">
|
|
{{ __('mail.retrieve_password_btn') }}
|
|
</a>
|
|
</p>
|
|
<dl style="font-size: 14px; color: rgb(51, 51, 51); line-height: 18px;">
|
|
<dd style="margin: 0px 0px 6px; padding: 0px; font-size: 12px; line-height: 22px;">
|
|
<p style="font-size: 14px; line-height: 26px; word-wrap: break-word; word-break: break-all; margin-top: 32px;">
|
|
{{ __('mail.sincerely') }}
|
|
<br>
|
|
<strong>{{ config('app.name') }} {{ __('mail.team') }}</strong>
|
|
</p>
|
|
</dd>
|
|
</dl>
|
|
</td>
|
|
<td style="width:3.2%;max-width:30px;"></td>
|
|
</tr>
|
|
</tbody>
|
|
@endsection |