Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="description" content="This is where your description goes">
- <meta name="keywords" content="one, two, three">
- <title>TV Repair Form</title>
- <!-- external CSS link -->
- <link rel="stylesheet" href="css/normalize.css">
- <link rel="stylesheet" href="css/style.css">
- </head>
- <body>
- <div>
- <form id="myForm" action="/submit" method="POST"> <!-- Update the action attribute to /submit -->
- <h2>New Customer</h2>
- <label for="cusName">Name of Customer:</label>
- <input type="text" id="cusName" name="cusName" required> <!-- Update the name attribute -->
- <label for="dropoffDate">Date:</label>
- <input type="date" id="dropoffDate" name="dropoffDate" required> <!-- Update the name attribute -->
- <label for="phoneNumber">Phone Number:</label>
- <input type="text" id="phoneNumber" name="phoneNumber" required> <!-- Update the name attribute -->
- <label for="makeModel">Model Number of TV:</label>
- <input type="text" id="makeModel" name="makeModel" required> <!-- Update the name attribute -->
- <label for="serialNumber">Serial Number of TV:</label>
- <input type="text" id="serialNumber" name="serialNumber" required> <!-- Update the name attribute -->
- <label for="description">Description of Problem:</label>
- <textarea id="description" name="description" required></textarea>
- <label for="items">Items Included in Drop-off:</label>
- <input type="text" id="items" name="items">
- <button type="submit" id="newsubmit">Submit</button>
- </form>
- </div>
- <div>
- <a href="index.html">Home</a>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment