-
-
+
+
+
+
+
초대 코드 입력
+
+
-
+ // 성공 메시지 표시
+ const successMsg = [[${success}]];
+ if (successMsg) {
+ customPopups.showAlert(successMsg, 'success');
+ }
+
+ // 초대 코드 입력 필드를 대문자로 자동 변환
+ $('#invitationCode').on('input', function() {
+ this.value = this.value.toUpperCase();
+ });
+ });
+
+
+
+
+
+
+
+
+