Created
March 19, 2013 17:31
-
-
Save yoavweiss/5198218 to your computer and use it in GitHub Desktop.
An HTML page with multiple forms
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
<html> | |
<body> | |
<form method="post" action="basket_backend"> | |
Where do I send this to? <input type="text"> | |
<input type="submit" value="You will SUBMIT!!!"> | |
</form> | |
<form method="post" action="product_backend"> | |
Shoe | |
<input type="button" value="+"> | |
<span class="quantity">1</span> | |
<input type="button" value="-"> | |
</form> | |
<form method="post" action="product_backend"> | |
Sock | |
<input type="button" value="+"> | |
<span class="quantity">3</span> | |
<input type="button" value="-"> | |
</form> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment