Siteβ―Builder
Editing:
Arcadia-Membership-html.html
writable 0666
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Arcadia Membership Invitation Form</title> <style> body { font-family: Arial, sans-serif; margin: 20px; } .container { max-width: 700px; margin: auto; } .form-section { border: 1px solid #ccc; padding: 15px; margin-bottom: 20px; border-radius: 5px; } label { display: block; margin-top: 10px; } input[type="text"], input[type="email"], input[type="date"] { width: 100%; padding: 8px; box-sizing: border-box; margin-top: 5px; } input[type="checkbox"] { margin-right: 5px; } .qualification { margin-top: 10px; } button { padding: 10px 20px; margin-top: 15px; cursor: pointer; } .highlight { font-weight: bold; } </style> </head> <body> <div class="container"> <h2>Arcadia Premiere Membership Invitation</h2> <div class="form-section"> <h3>Guest Information</h3> <label>Guest One - First Name: <input type="text" name="guest1_first_name"> </label> <label>Guest One - Last Name: <input type="text" name="guest1_last_name"> </label> <label>Guest One - Phone: <input type="text" name="guest1_phone"> </label> <label>Guest One - Email: <input type="email" name="guest1_email"> </label> <label>Guest Two - First Name: <input type="text" name="guest2_first_name"> </label> <label>Guest Two - Last Name: <input type="text" name="guest2_last_name"> </label> <label>Guest Two - Phone: <input type="text" name="guest2_phone"> </label> <label>Guest Two - Email: <input type="email" name="guest2_email"> </label> </div> <div class="form-section"> <h3>Qualifications</h3> <label class="qualification"><input type="checkbox" required> Guest must both be 25 - 75 years of age.</label> <label class="qualification"><input type="checkbox" required> Guests must be currently employed and have a combined income of at least $50,000.</label> <label class="qualification"><input type="checkbox" required> Guests must show Driver's License and major credit card (for ID only).</label> <label class="qualification"><input type="checkbox" required> If guests are married or co-habitate, they must tour together. Cohabs must show proof of same address.</label> <label class="qualification"><input type="checkbox" required> Cannot have attended an Arcadia presentation within the last 12 months.</label> <label class="qualification"><input type="checkbox" required> Guests grant Arcadia permission to contact them via text, phone, or email to confirm appointment.</label> <label class="qualification"><input type="checkbox" required> Guests must not currently be in an active Bankruptcy.</label> <label class="qualification"><input type="checkbox" required> Guest is responsible for any room tax, resort fee, airline tax, or port fee for below gifts.</label> </div> <div class="form-section"> <h3>Preview Details</h3> <label>Preview Date: <input type="date" name="preview_date"> </label> <label>Preview Time: <input type="text" name="preview_time"> </label> <label>Invited Area: <input type="text" name="invited_area"> </label> <label>Invited By: <input type="text" name="invited_by"> </label> <p class="highlight">THIS IS NOT A TIMESHARE PRESENTATION</p> <p class="highlight">THERE IS NO OBLIGATION TO PURCHASE!</p> </div> <div class="form-section"> <h3>Gifts for Your Time</h3> <p>As our way of saying thanks for approximately 90 minutes of your time, please allow us to give you the following gifts:</p> <textarea style="width: 100%; height: 80px;"></textarea> <label>Due to limited space, we take a deposit. If refundable, you will receive your deposit upon completion of the tour. <input type="text" placeholder="$ Deposit Amount"> </label> <label> <input type="checkbox"> Refundable Deposit </label> <label> <input type="checkbox"> Non-Refundable </label> <label>Guest Signature: <input type="text"> </label> <small>Offer not valid with any other promotion written or implied. A rain check or substitute gift of equal or greater value will be provided if the offered gift is unavailable.</small> </div> <button type="submit">Submit Invitation</button> </div> </body> </html>
Save changes
Create folder
writable 0777
Create
Cancel