36 lines
901 B
HTML
36 lines
901 B
HTML
<!DOCTYPE html>
|
|
<html xmlns:th="http://www.thymeleaf.org">
|
|
<head>
|
|
<title>Taco Cloud</title>
|
|
</head>
|
|
<body>
|
|
|
|
<h1>Order your taco creations!</h1>
|
|
|
|
<img th:src="@{/images/TacoCloud.png}"/>
|
|
|
|
<h3>Please correct the problems below and resubmit.</h3>
|
|
|
|
<form method="POST">
|
|
|
|
<h2>Deliver my taco masterpieces to...</h2>
|
|
|
|
Name: <input type="text" name="deliveryName"/><br/>
|
|
Street address: <input type="text" name="deliveryStreet"/><br/>
|
|
City: <input type="text" name="deliveryCity"/><br/>
|
|
State: <input type="text" name="deliveryState"/><br/>
|
|
Zip code: <input type="text" name="deliveryZip"/><br/>
|
|
|
|
<h2>Here's how I'll pay...</h2>
|
|
|
|
Credit Card #: <input type="text" name="ccNumber"/><br/>
|
|
Expiration: <input type="text" name="ccExpiration"/><br/>
|
|
CVV: <input type="text" name="ccCVV"/><br/>
|
|
|
|
<input type="submit" value="Submit order"/>
|
|
|
|
</form>
|
|
|
|
</body>
|
|
</html>
|