29 lines
1.1 KiB
PHP
29 lines
1.1 KiB
PHP
@extends('mail.layouts.base')
|
|
|
|
@section('content')
|
|
<div style="font-family:Apple SD Gothic Neo,Malgun Gothic,Segoe UI,Arial,sans-serif;color:#101828;">
|
|
<div style="font-size:18px;font-weight:800;letter-spacing:-.2px;">{{ $title ?? '인증번호 안내' }}</div>
|
|
<div style="height:10px"></div>
|
|
|
|
<div style="font-size:13px;line-height:1.8;color:#344054;">
|
|
{{ $email }} 회원님,<br>
|
|
아래 인증번호를 입력해 주세요.<br>
|
|
<span style="color:#667085;">(인증번호는 {{ $expires_min ?? 3 }}분 후 만료됩니다.)</span>
|
|
</div>
|
|
|
|
<div style="height:16px"></div>
|
|
|
|
<div style="background:#F2F4F7;border:1px solid #EAECF0;border-radius:14px;padding:16px 16px;text-align:center;">
|
|
<div style="font-size:28px;font-weight:900;letter-spacing:6px;color:#101828;">
|
|
{{ $code }}
|
|
</div>
|
|
</div>
|
|
|
|
<div style="height:14px"></div>
|
|
|
|
<div style="font-size:12px;line-height:1.7;color:#667085;">
|
|
본인이 요청하지 않았다면 이 메일을 무시해 주세요.
|
|
</div>
|
|
</div>
|
|
@endsection
|