본문 바로가기
기술자료 (KB)/Cloud

Microsoft SSPR(Self-Service Password Reset) 가이드

by 이완주 2025. 5. 24.

V0로 만들어 봤습니다.

비밀번호를 잃어 버린 사용자에게 전달하면 좋을 듯 하네요.

 

sspr-guide-email.html
0.01MB

<!DOCTYPE html>
<html lang="ko">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Microsoft SSPR 비밀번호 재설정 안내</title>
    <style>
        /* 이메일 클라이언트 호환성을 위한 기본 스타일 */
        body {
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f5f5f5;
            line-height: 1.6;
        }
        .container {
            max-width: 600px;
            margin: 0 auto;
            background-color: #ffffff;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        .header {
            background-color: #0078d4;
            color: white;
            padding: 30px 20px;
            text-align: center;
        }
        .header h1 {
            margin: 0;
            font-size: 24px;
            font-weight: 600;
        }
        .header p {
            margin: 5px 0 0 0;
            font-size: 14px;
            opacity: 0.9;
        }
        .content {
            padding: 30px 20px;
        }
        .intro-box {
            background-color: #e3f2fd;
            border-left: 4px solid #0078d4;
            padding: 15px;
            margin-bottom: 25px;
            border-radius: 4px;
        }
        .section {
            margin-bottom: 30px;
        }
        .section h2 {
            color: #0078d4;
            font-size: 18px;
            margin-bottom: 15px;
            border-bottom: 2px solid #e0e0e0;
            padding-bottom: 5px;
        }
        .step {
            display: flex;
            margin-bottom: 20px;
            padding: 15px;
            background-color: #f8f9fa;
            border-radius: 8px;
            border: 1px solid #e0e0e0;
        }
        .step-number {
            background-color: #0078d4;
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin-right: 15px;
            flex-shrink: 0;
        }
        .step-content h3 {
            margin: 0 0 8px 0;
            font-size: 16px;
            color: #333;
        }
        .step-content p {
            margin: 0;
            color: #666;
            font-size: 14px;
        }
        .step-content ul {
            margin: 8px 0 0 0;
            padding-left: 20px;
        }
        .step-content li {
            color: #666;
            font-size: 14px;
            margin-bottom: 4px;
        }
        .code {
            background-color: #f1f1f1;
            padding: 2px 6px;
            border-radius: 3px;
            font-family: 'Courier New', monospace;
            font-size: 12px;
        }
        .badges {
            display: flex;
            gap: 10px;
            margin-top: 10px;
            flex-wrap: wrap;
        }
        .badge {
            background-color: #e8f4fd;
            color: #0078d4;
            padding: 8px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
            border: 1px solid #b3d9f7;
        }
        .warning-box {
            background-color: #fff8e1;
            border: 1px solid #ffcc02;
            border-radius: 8px;
            padding: 15px;
            margin: 15px 0;
        }
        .warning-box h4 {
            margin: 0 0 10px 0;
            color: #f57c00;
            font-size: 14px;
        }
        .warning-box ul {
            margin: 10px 0 0 0;
            padding-left: 20px;
        }
        .warning-box li {
            color: #f57c00;
            font-size: 13px;
            margin-bottom: 4px;
        }
        .troubleshoot {
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 15px;
            margin-bottom: 15px;
            background-color: #fafafa;
        }
        .troubleshoot h4 {
            margin: 0 0 8px 0;
            color: #333;
            font-size: 14px;
        }
        .troubleshoot p {
            margin: 0;
            color: #666;
            font-size: 13px;
        }
        .contact-box {
            background-color: #e3f2fd;
            border: 1px solid #90caf9;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
        }
        .contact-box h3 {
            margin: 0 0 10px 0;
            color: #0078d4;
            font-size: 16px;
        }
        .contact-box p {
            margin: 0 0 15px 0;
            color: #1565c0;
            font-size: 14px;
        }
        .contact-info {
            color: #1565c0;
            font-size: 13px;
            line-height: 1.8;
        }
        .cta-button {
            text-align: center;
            margin: 30px 0;
        }
        .cta-button a {
            background-color: #0078d4;
            color: white;
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 500;
            display: inline-block;
        }
        .cta-button a:hover {
            background-color: #106ebe;
        }
        .footer-text {
            text-align: center;
            font-size: 12px;
            color: #666;
            margin-top: 10px;
        }
        .divider {
            height: 1px;
            background-color: #e0e0e0;
            margin: 25px 0;
        }
        
        /* 모바일 반응형 */
        @media only screen and (max-width: 600px) {
            .container {
                width: 100% !important;
            }
            .content {
                padding: 20px 15px !important;
            }
            .step {
                flex-direction: column;
            }
            .step-number {
                margin-bottom: 10px;
                margin-right: 0;
            }
            .badges {
                flex-direction: column;
            }
        }
    </style>
</head>
<body>
    <div class="container">
        <!-- 헤더 -->
        <div class="header">
            <h1>🛡️ Microsoft SSPR 비밀번호 재설정 안내</h1>
            <p>Self-Service Password Reset 사용 방법</p>
        </div>

        <!-- 본문 -->
        <div class="content">
            <!-- 인사말 -->
            <div class="intro-box">
                <p><strong>안녕하세요!</strong><br>
                Microsoft SSPR(Self-Service Password Reset)을 통해 비밀번호를 직접 재설정하는 방법을 안내해드립니다.</p>
            </div>

            <!-- SSPR 소개 -->
            <div class="section">
                <h2>🔒 SSPR이란?</h2>
                <p>SSPR은 IT 관리자의 도움 없이 사용자가 직접 비밀번호를 재설정할 수 있는 Microsoft의 셀프서비스 기능입니다.</p>
                
                <div class="badges">
                    <span class="badge">✅ 24시간 이용 가능</span>
                    <span class="badge">⚡ 즉시 재설정</span>
                    <span class="badge">🔐 안전한 인증</span>
                </div>
            </div>

            <div class="divider"></div>

            <!-- 단계별 안내 -->
            <div class="section">
                <h2>📱 비밀번호 재설정 단계</h2>

                <div class="step">
                    <div class="step-number">1</div>
                    <div class="step-content">
                        <h3>SSPR 포털 접속</h3>
                        <p>웹 브라우저에서 <span class="code">aka.ms/sspr</span> 또는 <span class="code">passwordreset.microsoftonline.com</span>에 접속합니다.</p>
                    </div>
                </div>

                <div class="step">
                    <div class="step-number">2</div>
                    <div class="step-content">
                        <h3>사용자 ID 입력</h3>
                        <p>회사 이메일 주소(예: user@company.com)를 입력하고 "다음" 버튼을 클릭합니다.</p>
                    </div>
                </div>

                <div class="step">
                    <div class="step-number">3</div>
                    <div class="step-content">
                        <h3>본인 인증</h3>
                        <p>등록된 인증 방법 중 하나를 선택합니다:</p>
                        <ul>
                            <li>휴대폰 SMS 인증</li>
                            <li>휴대폰 음성 통화</li>
                            <li>대체 이메일 주소</li>
                            <li>보안 질문 답변</li>
                        </ul>
                    </div>
                </div>

                <div class="step">
                    <div class="step-number">4</div>
                    <div class="step-content">
                        <h3>새 비밀번호 설정</h3>
                        <p>인증 완료 후 새로운 비밀번호를 입력하고 확인합니다. 회사 비밀번호 정책을 준수해야 합니다.</p>
                    </div>
                </div>
            </div>

            <div class="divider"></div>

            <!-- 비밀번호 정책 -->
            <div class="section">
                <h2>🛡️ 비밀번호 정책</h2>
                <div class="warning-box">
                    <h4>⚠️ 새 비밀번호는 다음 조건을 만족해야 합니다:</h4>
                    <ul>
                        <li>최소 8자 이상</li>
                        <li>대문자, 소문자, 숫자, 특수문자 중 3가지 이상 포함</li>
                        <li>이전 비밀번호와 달라야 함</li>
                        <li>사용자 이름이나 표시 이름 포함 금지</li>
                    </ul>
                </div>
            </div>

            <!-- 문제 해결 -->
            <div class="section">
                <h2>❗ 문제 해결</h2>
                
                <div class="troubleshoot">
                    <h4>SSPR이 활성화되지 않은 경우</h4>
                    <p>IT 관리자에게 SSPR 등록을 요청하거나 기존 방법으로 비밀번호 재설정을 문의하세요.</p>
                </div>

                <div class="troubleshoot">
                    <h4>인증 정보가 없는 경우</h4>
                    <p>휴대폰 번호나 대체 이메일을 먼저 등록해야 합니다. IT 관리자에게 문의하세요.</p>
                </div>
            </div>

            <!-- 연락처 -->
            <div class="contact-box">
                <h3>📧 추가 지원이 필요한 경우</h3>
                <p>SSPR 사용에 어려움이 있으시면 IT 헬프데스크로 연락주세요.</p>
                <div class="contact-info">
                    📧 <strong>이메일:</strong> helpdesk@company.com<br>
                    📞 <strong>전화:</strong> 02-1234-5678<br>
                    🕒 <strong>운영시간:</strong> 평일 09:00 - 18:00
                </div>
            </div>

            <!-- 빠른 링크 -->
            <div class="cta-button">
                <a href="https://aka.ms/sspr" target="_blank">🔒 SSPR 포털 바로가기</a>
            </div>
            <div class="footer-text">
                aka.ms/sspr 또는 passwordreset.microsoftonline.com
            </div>
        </div>
    </div>
</body>
</html>

댓글