Created
June 27, 2025 12:20
-
-
Save ichsanputr/a25b08fa304259bdd5fc5c0b75caf4e3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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