Untitled
unknown
html
5 months ago
2.0 kB
2
Indexable
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>About</title> <link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='css/form.css') }}"> </head> <body> <header> <h1>About Us</h1> <nav> <a href="/">Home</a> | <a href="/inventory">Inventory</a> <a href="/about">About</a> <a href="/contact">Contact</a> </nav> </header> <main> <form method="POST" action="/inquiry"> <label for="name">Name:</label> <input type="text" id="name" name="name" required><br><br> <label for="email">Email:</label> <input type="email" id="email" name="email" required><br><br> <label for="message">Message:</label> <textarea id="message" name="message" rows="5" required></textarea><br><br> <input type="submit" value="Submit"> </form> <div class="container"> <form id="contact" action=/inquiry" method="post"> <h3>Quick Contact</h3> <h4>Contact us today, and get reply with in 24 hours!</h4> <fieldset> <input placeholder="Your Name" type="text" name="name" tabindex="1" required autofocus> </fieldset> <fieldset> <input placeholder="Your Email Address" type="email" name="email" tabindex="2" required> </fieldset> <fieldset> <input placeholder="Your Phone Number" type="phone" name="phone" tabindex="3" required> </fieldset> <fieldset> <textarea placeholder="Type Your Message Here...." tabindex="5" name="message" required></textarea> </fieldset> <fieldset> <button name="submit" type="submit" value="Submit" data-submit="...Sending">Submit</button> <!-- <button name="submit" type="submit" id="contact-submit" data-submit="...Sending">Submit</button>--> </fieldset> </form> </div> </main> </body> </html>
Editor is loading...
Leave a Comment