Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created October 14, 2019 21:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/33b72ce4dc7df37b41291014f8c29f4d to your computer and use it in GitHub Desktop.
Save parzibyte/33b72ce4dc7df37b41291014f8c29f4d to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Add new person</title>
</head>
<body>
<form method="post" action="add.php">
<label for="first_name">Name:</label>
<br>
<input name="first_name" required type="text" id="first_name"
placeholder="First name">
<br><br>
<label for="last_name">Last name:</label>
<br>
<input name="last_name" required type="text" id="last_name"
placeholder="Last name">
<br><br>
<label for="gender">Gender</label>
<select name="gender" required name="gender" id="gender">
<option value="">--Please select--</option>
<option value="M">Male</option>
<option value="F">Female</option>
</select>
<br><br><input type="submit" value="Save">
</form>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment