- popup text -> html 변경

- 회원가입 완료 페이지 주소 분리
- 초대 페이지 디자인 적용
This commit is contained in:
Rinjae
2025-12-08 18:14:03 +09:00
parent ed5da5a94e
commit e5a3e0654d
4 changed files with 207 additions and 124 deletions
@@ -6,7 +6,7 @@ const customPopups = {
*/
showAlert: function (message, callback) {
// 메시지 설정
$('#customAlertMessage').text(message);
$('#customAlertMessage').html(message);
// 팝업 표시 (modal 구조 사용)
$('#customAlert').show();
@@ -102,7 +102,7 @@ const customPopups = {
// 팝업 내용 설정
$('#passwordPopupTitle').text(title);
$('#passwordPopupMessage').text(message);
$('#passwordPopupMessage').html(message);
// 입력 필드 및 에러 초기화
$('#passwordPopupInput').val('').removeClass('error');
@@ -216,7 +216,7 @@ const customPopups = {
*/
showConfirm: function (message, callback) {
// 메시지 설정
$('#customConfirmMessage').text(message);
$('#customConfirmMessage').html(message);
// 팝업 표시 (modal 구조 사용)
$('#customConfirm').show();
@@ -302,7 +302,7 @@ const customPopups = {
$(document).off('keydown.customConfirmEsc');
},
showEmailValidationPopup: function (message, onConvertCallback, onChangeEmailCallback) {
$('#emailValidationPopupMessage').text(message);
$('#emailValidationPopupMessage').html(message);
$('#emailValidationPopup').css('display', 'flex');
$('#emailConvertButton').one('click', function () {
@@ -320,7 +320,7 @@ const customPopups = {
});
},
showEmailResendPopup: function (message, loginId) {
$('#emailResendMessage').text(message);
$('#emailResendMessage').html(message);
$('#userLoginId').val(loginId);
$('#emailResend').show();
},