diff options
Diffstat (limited to 'lib/approval/templates/암호화해제 신청.html')
| -rw-r--r-- | lib/approval/templates/암호화해제 신청.html | 180 |
1 files changed, 180 insertions, 0 deletions
diff --git a/lib/approval/templates/암호화해제 신청.html b/lib/approval/templates/암호화해제 신청.html new file mode 100644 index 00000000..e2bcacff --- /dev/null +++ b/lib/approval/templates/암호화해제 신청.html @@ -0,0 +1,180 @@ +<div + style=" + max-width: 800px; + margin: 0 auto; + font-family: 'Segoe UI', 'Malgun Gothic', sans-serif; + color: #333; + line-height: 1.6; + " +> + <!-- 헤더 --> + <table + style=" + width: 100%; + border-collapse: collapse; + margin-bottom: 20px; + border: 2px solid #000; + " + > + <thead> + <tr> + <th + style=" + background-color: #fff; + color: #000; + padding: 20px; + text-align: center; + font-size: 24px; + font-weight: 700; + " + > + 암호화해제 신청 + </th> + </tr> + </thead> + </table> + + <!-- 결재 사유 --> + <div + style=" + background-color: #f5f5f5; + padding: 15px; + border: 1px solid #ccc; + margin-bottom: 20px; + " + > + <div style="font-weight: 600; color: #333; margin-bottom: 8px"> + 결재 사유 + </div> + <div style="color: #333"> + 첨부자료가 사외업체에 송부되므로, 정보보호 그룹의 보안지침에 따른 결재 + 요청 + </div> + </div> + + <!-- 파일 목록 --> + <table + style=" + width: 100%; + border-collapse: collapse; + margin-bottom: 20px; + border: 1px solid #666; + " + > + <thead> + <tr> + <th + style=" + background-color: #333; + color: #fff; + padding: 12px; + text-align: left; + font-size: 16px; + font-weight: 600; + border-bottom: 1px solid #666; + " + > + 파일 목록 + </th> + </tr> + </thead> + <tbody> + <tr> + <td + style=" + background-color: #fff; + color: #333; + padding: 15px; + border: 1px solid #ccc; + " + > + {{파일 테이블}} + </td> + </tr> + </tbody> + </table> + + <!-- 제출처 --> + <table + style=" + width: 100%; + border-collapse: collapse; + margin-bottom: 20px; + border: 1px solid #666; + " + > + <thead> + <tr> + <th + style=" + background-color: #333; + color: #fff; + padding: 12px; + text-align: left; + font-size: 16px; + font-weight: 600; + border-bottom: 1px solid #666; + " + > + 제출처 + </th> + </tr> + </thead> + <tbody> + <tr> + <td + style=" + background-color: #fff; + color: #333; + padding: 15px; + border: 1px solid #ccc; + " + > + {{제출처}} + </td> + </tr> + </tbody> + </table> + + <!-- 신청 사유 --> + <table + style=" + width: 100%; + border-collapse: collapse; + margin-bottom: 20px; + border: 1px solid #666; + " + > + <thead> + <tr> + <th + style=" + background-color: #333; + color: #fff; + padding: 12px; + text-align: left; + font-size: 16px; + font-weight: 600; + border-bottom: 1px solid #666; + " + > + 신청 사유 + </th> + </tr> + </thead> + <tbody> + <tr> + <td + style=" + background-color: #fff; + color: #333; + padding: 20px; + border: 1px solid #ccc; + " + > + {{신청사유}} + </td> + </tr> + </tbody> + </table> +</div> |
