fix:테스트 데이터 비밀번호를 12341234로 고정

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
pro
2026-01-29 21:01:26 +09:00
parent 23c50c5051
commit 50a8ce70f0

View File

@@ -463,8 +463,8 @@ function fillRandomData() {
// 랜덤 전화번호
const phone = '010-' + randomNum(1000, 9999) + '-' + randomNum(1000, 9999);
// 랜덤 비밀번호 (8자)
const password = 'Test' + randomNum(1000, 9999) + '!';
// 고정 비밀번호 (테스트용)
const password = '12341234';
// 폼 필드 채우기
document.querySelector('input[name="user_id"]').value = userId;
@@ -487,7 +487,7 @@ function fillRandomData() {
console.log('========================');
// 알림
alert('테스트 데이터가 입력되었습니다.\n\n비밀번호: ' + password + '\n\n(콘솔에서도 확인 가능)');
alert('테스트 데이터가 입력되었습니다.\n\n비밀번호: 12341234');
}
</script>
@endpush