From 50a8ce70f046543c7310645a1f25b1890e49941d Mon Sep 17 00:00:00 2001 From: pro Date: Thu, 29 Jan 2026 21:01:26 +0900 Subject: [PATCH] =?UTF-8?q?fix:=ED=85=8C=EC=8A=A4=ED=8A=B8=20=EB=8D=B0?= =?UTF-8?q?=EC=9D=B4=ED=84=B0=20=EB=B9=84=EB=B0=80=EB=B2=88=ED=98=B8?= =?UTF-8?q?=EB=A5=BC=2012341234=EB=A1=9C=20=EA=B3=A0=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.5 --- resources/views/sales/managers/create.blade.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/views/sales/managers/create.blade.php b/resources/views/sales/managers/create.blade.php index d43be5b0..4f4cc218 100644 --- a/resources/views/sales/managers/create.blade.php +++ b/resources/views/sales/managers/create.blade.php @@ -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'); } @endpush