서버 DB 에러 핸들링 및 비밀번호 보안 속성 수정

This commit is contained in:
2026-01-04 16:05:15 +09:00
parent 0326878386
commit 939ba4b887
2 changed files with 4 additions and 1 deletions

View File

@@ -722,6 +722,7 @@
<input
type="password"
required={!editingMember}
autoComplete="new-password"
value={formData.password}
onChange={(e) => setFormData({...formData, password: e.target.value})}
className="w-full px-4 py-3 bg-slate-50 border border-slate-200 rounded-xl outline-none focus:ring-2 focus:ring-blue-500 focus:bg-white transition-all"
@@ -1507,6 +1508,7 @@
<input
type="password"
required
autoComplete="current-password"
value={password}
onChange={(e) => setPassword(e.target.value)}
className="w-full px-4 py-3 bg-slate-50 border border-slate-200 rounded-xl focus:ring-2 focus:ring-blue-500 focus:bg-white outline-none transition-all font-medium"
@@ -1883,6 +1885,7 @@
<input
type="password"
required={!editingMember}
autoComplete="new-password"
value={formData.password}
onChange={(e) => setFormData({...formData, password: e.target.value})}
className="w-full px-3 py-2 border border-slate-200 rounded-lg outline-none focus:ring-2 focus:ring-blue-500"