giftcon_dev/resources/views/mail/auth/reset_password.blade.php

24 lines
1.0 KiB
PHP

@extends('mail.layouts.base')
@section('content')
<div style="font-family:system-ui,-apple-system,Segoe UI,Roboto; max-width:640px; margin:0 auto; padding:24px;">
<h2 style="margin:0 0 12px 0;">비밀번호 재설정 안내</h2>
<p style="margin:0 0 16px 0; color:#444; line-height:1.6;">
아래 버튼을 눌러 비밀번호 재설정을 진행해 주세요.<br>
링크 유효시간: <b>{{ $expires_min ?? 30 }}</b>
</p>
<p style="margin:0 0 18px 0;">
<a href="{{ $link }}" style="display:inline-block; padding:12px 16px; background:#E4574B; color:#fff; border-radius:10px; text-decoration:none; font-weight:700;">
비밀번호 재설정하기
</a>
</p>
<p style="margin:0; color:#777; font-size:13px; line-height:1.6;">
버튼이 동작하지 않으면 아래 링크를 복사해 브라우저에 붙여넣어 주세요.<br>
<span style="word-break:break-all;">{{ $link }}</span>
</p>
</div>
@endsection