feat: 회사 이메일 권장 규칙 안내 — 영문 이름.성 형식 (예: gildong.hong)
회사 이메일은 고객사와의 대외 소통에도 쓰이므로 영문 이름 기반을 권장. 가입 폼 placeholder와 안내 문구로 자연스럽게 유도. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
parent
765d30c479
commit
c0b783613d
@ -173,13 +173,18 @@ export default function SignupPage() {
|
||||
className="input"
|
||||
value={form.companyEmailLocal}
|
||||
onChange={(e) => set('companyEmailLocal', e.target.value.toLowerCase())}
|
||||
placeholder="hong"
|
||||
placeholder="gildong.hong"
|
||||
style={{ flex: 1 }}
|
||||
/>
|
||||
<span className="badge badge-primary" style={{ display: 'flex', alignItems: 'center', fontSize: 14 }}>
|
||||
@{COMPANY_DOMAIN}
|
||||
</span>
|
||||
</div>
|
||||
{/* 권장 규칙 안내 — 회사 이메일은 고객사와의 대외 소통에도 쓰이므로 영문 이름으로 */}
|
||||
<p className="muted" style={{ fontSize: 12.5, marginTop: 4 }}>
|
||||
영문 이름으로 만들어 주세요 — <strong>이름.성</strong> 형식 권장
|
||||
(예: 홍길동 → gildong.hong)
|
||||
</p>
|
||||
{form.companyEmailLocal && (
|
||||
<p className="muted" style={{ fontSize: 12.5, marginTop: 4 }}>
|
||||
→ {form.companyEmailLocal}@{COMPANY_DOMAIN}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user