Untitled
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Sign Up to Buy Your Dream Home</title> <style> body { font-family: Arial, sans-serif; margin: 0; padding: 0; background-color: #f5f5f5; color: #333; } .container { max-width: 600px; margin: 50px auto; background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); } .container h1 { text-align: center; margin-bottom: 20px; } .form-group { margin-bottom: 15px; } .form-group label { display: block; margin-bottom: 5px; } .form-group input { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px; } .form-group button { width: 100%; padding: 10px; background-color: #007bff; color: white; border: none; border-radius: 4px; font-size: 16px; cursor: pointer; } .form-group button:hover { background-color: #0056b3; } .footer { text-align: center; margin-top: 20px; font-size: 14px; color: #777; } </style> </head> <body> <div class="container"> <h1>Sign Up to Buy Your Dream Home</h1> <form action="/submit" method="POST"> <div class="form-group"> <label for="first-name">First Name</label> <input type="text" id="first-name" name="first-name" required> </div> <div class="form-group"> <label for="last-name">Last Name</label> <input type="text" id="last-name" name="last-name" required> </div> <div class="form-group"> <label for="email">Email</label> <input type="email" id="email" name="email" required> </div> <div class="form-group"> <label for="phone">Phone Number</label> <input type="tel" id="phone" name="phone" required> </div> <div class="form-group"> <label for="password">Password</label> <input type="password" id="password" name="password" required> </div> <div class="form-group"> <button type="submit">Sign Up</button> </div> </form> <div class="footer"> Already have an account? <a href="/login">Log in</a> </div> </div> </body> </html>
Leave a Comment