chore: make name required

This commit is contained in:
jinhojang6 2024-03-19 22:23:49 +09:00
parent 221b74063f
commit 9e44db01f9
No known key found for this signature in database
GPG Key ID: 1762F21FE8B543F8

View File

@ -14,8 +14,8 @@ export const commands: Record<
<form class="apply-form" onsubmit="handleSubmit(event)">
<p>Apply for membership.</p>
<br/>
<label for="form-name">Name or pseudonym</label>
<input class="apply-input" id="form-name" placeholder="Enter here" />
<label for="form-name">Name or pseudonym (required)</label>
<input class="apply-input" id="form-name" placeholder="Enter here" required />
<label for="form-email">Email (required)</label>
<input class="apply-input" id="form-email" placeholder="Enter here" type="email" required />