Skip to content

Instantly share code, notes, and snippets.

@yoavweiss
Created March 19, 2013 17:31
Show Gist options
  • Save yoavweiss/5198218 to your computer and use it in GitHub Desktop.
Save yoavweiss/5198218 to your computer and use it in GitHub Desktop.
An HTML page with multiple forms
<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