Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <!--Sign up page for new users-->
- <html lang="en-US">
- <head>
- <title>Sign Up</title>
- <meta charset="utf-8">
- <link href="../css/style.css" rel="stylesheet" type="text/css">
- <link rel="icon" type="image/png" sizes="32x32" href="../pics/favicon-32x32.png">
- </head>
- <body class="box">
- <!--Header-->
- <div id="header">
- <header>
- <!--Navigation bar-->
- <div>
- <nav>
- <ul>
- <li><a href="../index.html">Home</a></li>
- <li><a href="Services.html">Services</a></li>
- <li><a href="Gallery.html">Gallery</a></li>
- <li><a href="Contact.html">Contact</a></li>
- <li><div id="login"><a href="login.html">Login</a></div></li>
- <li><div id="signup"><a href="signup.html">Sign Up</a></div></li>
- </ul>
- </nav>
- </div>
- </header>
- </div> <!--End of header-->
- <!--Banner-->
- <div class="banner"><img src="../pics/subcool_ac.jpg" alt="A longer version of Subcool AC Services' logo." width="1070" height="350"></div>
- <div class="container">
- <div id="form_sign">
- <h1>Sign Up</h1>
- <form action="response.html" class="form_style">
- <fieldset><legend>Personal Information:</legend>
- <p>First Name</p>
- <input type="text" name="fname" required>
- <br>
- <p>Last Name</p>
- <input type="text" name="fname" required>
- <br>
- <p>Username</p>
- <input type="text" name="username" required>
- <br>
- <p>Email</p>
- <input type="email" name="email" required>
- <br>
- <p>Password</p>
- <input type="password" name="pword" required>
- </fieldset>
- <br>
- <fieldset><legend>Further Informaton:</legend>
- <p>Check the option most appropriate.</p>
- <input type="radio" name="owner" id="home" value="home">
- <label for="home">Home Owner</label>
- <br>
- <input type="radio" name="owner" id="business" value="business">
- <label for="business">Business Owner</label><br>
- <br>
- <p>Are you a first time customer?</p>
- <input type="radio" name="customer" id="yes" value="yes">
- <label for="yes">Yes</label>
- <br>
- <input type="radio" name="customer" id="no" value="no">
- <label for="no">No</label>
- <br>
- <p>How did you find out about <strong>Subcool AC Services</strong>?</p>
- <select name="findout">
- <option>Social Media</option>
- <option>Customer/Family Member</option>
- <option>Advertisments</option>
- <option>Other</option>
- </select>
- </fieldset>
- <br>
- <input type="submit" value="SIGN UP">
- </form>
- </div>
- <p class="form_para">Already have an account? Login in <a href="login.html">here.</a></p>
- </div>
- <!--Footer-->
- <div id="footer">
- <footer>
- <p><a href="sitemap.html">Site Map</a></p>
- <p>© 2022 Subcool AC Services</p>
- </footer>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement