CAPTCHA Screen
Overview
Configure the CAPTCHA screen displayed to users detected by policies who need to perform secondary verification. You can customize it using Easy editing or Code Editing.
The editing screen consists of the following:
- Title: You can enter up to 50 characters. Set a clear name for easy identification in the list.
- After entering the title, you must click [Confirm] to save it.
- Preview: Select [Exit Editing] or [Full View] to expand and view it.
- Edit: You can adjust it using the console's [Easy editing] or [Editor].
Easy editing
Easy editing consists of the following:
- Default Language: Set the default language to be applied in environments that do not support multilingual settings.
- Language Settings: When enabled, you can customize phrases for each language. Currently available languages are Korean, Japanese, and English.
- Background Image
- Panel Color: The CAPTCHA screen is configured as a rectangle within the panel area, not the entire page. You can set a panel color that is distinct from the background color.
- Title: The phrase to be displayed on the panel.
- Content: Detailed information to be displayed below the title.
- Refresh Notice: A notice about the number of refreshes remaining.
- CAPTCHA codes can be refreshed up to three times.
- Submit Button: A button for users to submit the CAPTCHA code they entered.
- Block Reason Code: You can set whether to display the block reason code.
- When inquiries or claims related to blocking occur, you can respond more accurately based on this code.
- Favicon: You can set the favicon to be displayed in the browser tab when the CAPTCHA screen is displayed.
- Footer: You can set the content of the footer area to be displayed at the bottom of the CAPTCHA screen.
Editor
Editor allows for detailed customization through code editing. Values specified in Easy editing are automatically reflected in the code.
The multilingual configuration can be found at the bottom of the code as shown below.
window.__bm_config__ = {
"translations": {
"en": {
"title": "Access Denied",
"pageTitle": "Access Denied",
"footerText": "Powered by STCLab | © STCLab Inc.",
"description": "You cannot access this service from your device.",
"submitButtonText": "",
"redirectButtonText": "Go Back"
},
"ja": {
"title": "アクセス拒否",
"pageTitle": "アクセス拒否",
"footerText": "Powered by STCLab | © STCLab Inc.",
"description": "現在ご利用のデバイスからはサービスをご利用いただけません。",
"submitButtonText": "",
"redirectButtonText": "前のページへ戻る"
},
"ko": {
"title": "서비스 접속 차단",
"pageTitle": "서비스 접속 차단",
"footerText": "Powered by STCLab | © STCLab Inc.",
"description": "현재 접속하신 단말에서는 접속이 불가능합니다.",
"submitButtonText": "",
"redirectButtonText": "이전으로 돌아가기"
}
},
"defaultLang": "ko",
"redirectUrl": "https://example.com",
"multiLanguageEnabled": true
};
When configuring, modify only the text values to ensure the CAPTCHA screen displays correctly, and do not change or delete other script code.
If you delete the submit button code located at the bottom, the submit button will not be displayed. In this case, users cannot complete verification or proceed to the next screen even if they enter the CAPTCHA code, so be careful when modifying the code.
<!-- Submit button area -->
<div class="bm-submit-btn enabled">Submit</div>