This file contains 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
<html> | |
<body> | |
<h2>Update your profile:</h2> | |
<form> | |
<label>First name: </label><input type="text" name="firstname"><br> | |
<label>Last name: </label><input type="text" name="lastname"><br> | |
<label>Email: </label><input type="text" name="email"><br> | |
<h2>Update your subscriptions:</h2> | |
<label>Newsletter: </label><input name="newsletter" type="checkbox"><br> | |
<label>Events: </label><input name="events" type="checkbox"><br> | |
<label>Offers: </label><input name="offers" type="checkbox"><br> | |
<input name="submitted" type="hidden" value="true"><br> | |
<input type="submit" value="Submit"> | |
</form> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment