• 3199 Highway 25B, Heber Springs, Arkansas 72543

Opt-In Page

<form action="YOUR_SMS_PROVIDER_WEBHOOK_URL" method="POST" style="border: 1px solid #ccc; padding: 20px; border-radius: 5px; max-width: 400px;">
  <h3>Subscribe for Text Updates</h3>
  <label for="phone">Enter Mobile Number:</label><br>
  <input type="tel" id="phone" name="phone" placeholder="+1234567890" pattern="^\+?[1-9]\d{1,14}$" required style="width: 100%; padding: 10px; margin: 10px 0;">
  
  <!-- Compliance Disclaimer (Required for SMS Marketing) -->
  <p style="font-size: 12px; color: #666;">
    By entering your number and submitting this form, you agree to receive recurring automated marketing messages from [Your Company Name]. Consent is not a condition of purchase. Msg & data rates may apply. Reply HELP for help, STOP to opt out.
  </p>
  
  <button type="submit" style="background-color: #28a745; color: white; padding: 10px 15px; border: none; border-radius: 3px;">
    Opt In
  </button>
</form>