Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mehyar500/1adc6657c312b009ac8c003cd59da51b to your computer and use it in GitHub Desktop.
Save mehyar500/1adc6657c312b009ac8c003cd59da51b to your computer and use it in GitHub Desktop.
Sendy Subscribe Form Code
<form action="http://example.com/subscribe" method="POST" accept-charset="utf-8">
<input class="form-control input-lg" type="text" name="name" required id="name" placeholder="Name"/>
<br/>
<input class="form-control input-lg" type="email" name="email" required id="email" placeholder="Email" pattern="[a-zA-Z0-9._\-]+@[a-zA-Z0-9.\-]+\.[a-zA-Z]{2,4}"/>
<br/>
<input class="form-control input-lg" type="tel" name="MobilePhone" required id="MobilePhone" placeholder="Phone"/>
</p>
<p>
<input class="form-control input-lg" type="text" name="WorkshopDate" id="WorkshopDate" placeholder="Click Here To Select a Sunday. (Date Format : Date/Month/Year)" required readonly="true"/>
<br/>
<small>
<strong>We respect your privacy and do not tolerate spam and will never sell, rent, lease or give away your information (name, email, number, etc.) to any third party. Nor will we send you unsolicited email.</strong>
</small>
<br/>
<br/>
<input class="form-control" type="hidden" name="list" value="your_List_ID"/>
<input class="btn btn-danger btn-lg center-block" type="submit" name="submit" id="submit" value="I'm Serious About This"/>
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment