Skip to content

Instantly share code, notes, and snippets.

@ichsanputr
Created June 27, 2025 12:20
Show Gist options
  • Save ichsanputr/a25b08fa304259bdd5fc5c0b75caf4e3 to your computer and use it in GitHub Desktop.
Save ichsanputr/a25b08fa304259bdd5fc5c0b75caf4e3 to your computer and use it in GitHub Desktop.
<form method="POST" action="process.php">
이름: <input type="text" name="name" required><br>
이메일: <input type="email" name="email" required><br>
나이: <input type="number" name="age" min="1" max="120"><br>
성별:
<input type="radio" name="gender" value="남성"> 남성
<input type="radio" name="gender" value="여성"> 여성<br>
<button type="submit">회원가입</button>
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment