Last active
August 29, 2015 13:58
-
-
Save cvializ/10126361 to your computer and use it in GitHub Desktop.
EMCVT Shopping Cart Error
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <style> | |
| .premiums h3 { | |
| font-weight: bold; | |
| text-decoration: underline; | |
| } | |
| .premiums ul { | |
| list-style: none; | |
| } | |
| form { | |
| margin: 20px; | |
| } | |
| label { | |
| width: 33%; | |
| display: inline-block; | |
| } | |
| .group { | |
| display: block; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div class="premiums"> | |
| <h3>Premiums for donating</h3> | |
| <ul> | |
| <li>$5 - WUVT Bumper-Sticker</li> | |
| <li>$20 - WUVT Reusable Grocery Bag</li></li> | |
| <li>$35 - WUVT Thermos OR Mason Jar Mug OR Glass Beer Mug</li> | |
| <li>$65 - WUVT T-Shirt</li> | |
| <li>$125 - WUVT Beach Towel</li> | |
| <li>$500 - Overnight Stay at The Inn at VT</li> | |
| <li>$907 - WUVT Welcome Mat!</li> | |
| </ul> | |
| </div> | |
| <form name="orderform_16309" method="post" action="http://secure.collegemedia.com/shop/cart.php" target="_blank"> | |
| <span style="font-style: italic; font-weight: bold;">This is for a one-time donation; if you would like to donate monthly, please <a href="/donatemonthly">click here</a> or call our office at 540-231-9888.</span> | |
| <!-- hidden inputs --> | |
| <input type="hidden" name="mode" value="add" /> | |
| <input type="hidden" name="productid" value="16309" /> | |
| <input type="hidden" name="amount" value="1" /> | |
| <div class="group"> | |
| <label for="price">Your Donation:</label> | |
| $<input name="price" type="text" size="8" /> | |
| </div> | |
| <div class="group"> | |
| <label for="product_options[162]">Premiums:</label> | |
| <select id="po162" name="product_options[162]"> | |
| <option value="338" selected="selected">No premiums - Put my entire donation to help WUVT</option> | |
| <option value="339">I'll pick up my premiums in 350 Squires</option> | |
| <option value="340">Please ship them to me (+$ 6.00)</option> | |
| </select> | |
| </div> | |
| <div class="group"> | |
| <label for="product_options[371]">T-Shirt Size:</label> | |
| <select id="po371" name="product_options[371]"> | |
| <option value="761" selected="selected">- no preference -</option> | |
| <option value="747">Small</option> | |
| <option value="748">Medium</option> | |
| <option value="749">Large</option> | |
| <option value="750">XL</option> | |
| <option value="751">XXL</option> | |
| </select> | |
| </div> | |
| <div class="group"> | |
| <label for="product_options[372]">T-shirt color</label> | |
| <select id="po372" name="product_options[372]"> | |
| <option value="762" selected="selected">- no preference -</option> | |
| <option value="752">Orange</option> | |
| <option value="753">Black</option> | |
| <option value="754">Kiwi</option> | |
| <option value="755">Berry</option> | |
| </select> | |
| </div> | |
| <div class="group"> | |
| <label for="product_options[163]">On air</label> | |
| <select id="po163" name="product_options[163]"> | |
| <option value="341" selected="selected">Yes</option> | |
| <option value="342">No</option> | |
| </select> | |
| </div> | |
| <div class="group"> | |
| <label for="product_options[164]">First time</label> | |
| <select id="po164" name="product_options[164]"> | |
| <option value="343" selected="selected">Yes</option> | |
| <option value="344">No</option> | |
| </select> | |
| </div> | |
| <div class="group"> | |
| <label for="product_options[165]">Year born</label> | |
| <input id="po165" type="text" name="product_options[165]" value="" /> | |
| </div> | |
| <div class="group"> | |
| <label for="product_options[166]">DJ to Credit</label> | |
| <input id="po166" type="text" name="product_options[166]" value="" /> | |
| </div> | |
| <div class="group"> | |
| <label for="product_options[168]">Comment Now</label> | |
| <input id="po168" type="text" name="product_options[168]" value="" /> | |
| </div> | |
| <input type="submit" value="Checkout Your Pledge!" /> | |
| </form> | |
| <!-- <iframe width="0" height="0" src="http://secure.collegemedia.com/shop/cart.php"></iframe> --> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment