krgm.so-manager-dev.com/resources/views/emails/otp.blade.php
OU.ZAIKOU 13d2ecfceb
All checks were successful
Deploy main / deploy (push) Successful in 25s
【ログイン】二重認証実装
2026-01-21 22:37:38 +09:00

106 lines
3.5 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>セキュリティ認証</title>
<style>
body {
font-family: 'Segoe UI', 'Helvetica Neue', sans-serif, 'Arial';
line-height: 1.6;
color: #333;
}
.container {
max-width: 600px;
margin: 0 auto;
padding: 20px;
background-color: #f9f9f9;
}
.header {
background-color: #007bff;
color: white;
padding: 20px;
text-align: center;
border-radius: 4px;
}
.content {
background-color: white;
padding: 20px;
margin-top: 10px;
border: 1px solid #e0e0e0;
border-radius: 4px;
}
.code-box {
background-color: #f5f5f5;
border: 2px solid #007bff;
padding: 20px;
text-align: center;
margin: 20px 0;
font-size: 32px;
font-weight: bold;
letter-spacing: 5px;
font-family: 'Courier New', monospace;
}
.footer {
font-size: 12px;
color: #666;
margin-top: 20px;
padding-top: 10px;
border-top: 1px solid #e0e0e0;
}
.warning {
background-color: #fff3cd;
border: 1px solid #ffc107;
padding: 10px;
margin: 10px 0;
border-radius: 4px;
color: #856404;
font-size: 14px;
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1>🔐 セキュリティ認証</h1>
</div>
<div class="content">
<p>{{ $operatorName }} </p>
<p>いつもご利用いただきありがとうございます。</p>
<p>ログイン認証用の OTPワンタイムパスワードをお送りしました。</p>
<h2 style="text-align: center; color: #007bff;">認証コード</h2>
<div class="code-box">{{ $otpCode }}</div>
<p style="text-align: center; color: #666; margin: 10px 0;">
<strong>⏱️ 有効期限10分間</strong>
</p>
<p>このコードを入力フォームに入力して、認証を完了してください。</p>
<div class="warning">
<strong>セキュリティに関するご注意:</strong>
<ul style="margin: 5px 0; padding-left: 20px;">
<li>このコードは絶対に他の方に教えないでください</li>
<li>このメールの送信に心当たりがない場合は、無視してください</li>
<li>本システムは認証コードをメールで送信することはありません。リンククリックは不要です。</li>
</ul>
</div>
<p>ご不明な点やサポートが必要な場合は、お気軽にお問い合わせください。</p>
<p>よろしくお願いいたします。</p>
</div>
<div class="footer">
<p>このメールは自動送信です。返信はしないでください。</p>
<p>&copy; 2026 So-Manager. All rights reserved.</p>
</div>
</div>
</body>
</html>