diff options
author | msglm <msglm@techchud.xyz> | 2023-01-14 05:31:48 -0600 |
---|---|---|
committer | msglm <msglm@techchud.xyz> | 2023-01-14 05:31:48 -0600 |
commit | 9d53d8857eaa1c9405894a88ca75bc4657e42f35 (patch) | |
tree | eb1efc1d028b949dd83bb710c68be8eff58f26e7 /HTML/Final/sneed/purchase-form.html.orig | |
download | school-code-master.tar.gz school-code-master.tar.bz2 school-code-master.zip |
Diffstat (limited to 'HTML/Final/sneed/purchase-form.html.orig')
-rw-r--r-- | HTML/Final/sneed/purchase-form.html.orig | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/HTML/Final/sneed/purchase-form.html.orig b/HTML/Final/sneed/purchase-form.html.orig new file mode 100644 index 0000000..7456612 --- /dev/null +++ b/HTML/Final/sneed/purchase-form.html.orig @@ -0,0 +1,57 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <title>Sneed's Feed and Seed - Purchase</title> + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <link rel="stylesheet" href=style.css> + <link rel="shortcut icon" href="assets/Iconography/favicon.png" type="image/png"> + </head> + <body> + <div id=wrapper> + <header> + <img width=91 alt="The logo of Sneed's Feed and Seed. It has a red hat with the title of the company on it." src="assets/Iconography/logo-small.png"> + + <div> + <h1>Sneed's Feed and Seed</h1> + <p id=headercaption>Formerly Chuck's</p> + </div> + </header> + <nav> + <ul> + <li><a href="index.html">Home</a></li> + <li><a href="store.html">Store</a></li> + <li><a href="legal.html">Legal</a></li> + <li><a href="about.html">About</a></li> + </ul> + </nav> + <main> + <h1>Purchase Form</h1> + <p>All fields are required.</p> + + <form action="https://webdevbasics.net/scripts/demo.php" method="post"> + <label for="name">Enter your name: </label> + <input type="text" name="name" id="name" required> + <label for="email">Enter your email: </label> + <input type="email" name="email" id="email" required> + <label for="product">Enter the name of the product you wish to purchase: </label> + <input list="productlist" name="product" id="product" required> + <datalist id="productlist"> + <!--Items--> + </datalist> + <label for="reserved">Enter the quantity of the product: </label> + <input type="number" name="reserved" id="reserved" required> + <label for="date">Enter when you will pick your goods up:</label> + <input type="date" name="date" id="date" required> + <input type="submit" value="Place Order"> + </form> + + </main> + <footer> + <p>Copyleft 2022 <span class=copyleft>©</span> - <a href=https://creativecommons.org/licenses/by-sa/4.0/>CC-BY-SA 4.0</a></p> + <small><a href=mailto:msglm@techchud.xyz>msglm</a></small> + <small><i>Last Updated April 28th 2022</i></small> + </footer> + </div> + </body> +</html> |