A small project that collects various nice things to get started with Go Web Development.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

29 lines
875 B

<card>
<top>
<h1>FakePay</h1>
</top>
<middle>
<form action="/api/fakepay/pay" method="POST">
<label for="Card">Card</label>
<input name="Card" id="Card" placeholder="Card" />
<label for="NameOnCard">Name on Card</label>
<input name="NameOnCard" id="NameOnCard" placeholder="Name on Card" />
<label for="CVV">CVV</label>
<input name="CVV" id="CVV" placeholder="CVV" />
<label for="Expiration">Expiration</label>
<input name="Expiration" id="Expiration" placeholder="Expiration" />
<label for="PostalCode">Postal/Zip</label>
<input name="PostalCode" id="PostalCode" placeholder="PostalCode" />
<button-group>
<a href="/shopping/"><button type="button">Continue Shopping</button></a>
<button type="submit">Submit</button>
</button-group>
</form>
</middle>
</card>