Last active
November 15, 2021 09:22
-
-
Save candicerm/0cc248dd34e275d63b3e0f4497a1d503 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <style> | |
| .qs-style p { | |
| font-family: Arial, Tahoma, sans-serif; | |
| font-size: 0.875rem; | |
| color: #7fbff4; | |
| display: inline-block; | |
| margin-bottom: 0px; | |
| min-width: 200px; | |
| vertical-align: top; | |
| } | |
| .qs-style input, .qs-style textarea { | |
| font-size: 1em; | |
| padding: 3px; | |
| color: #7fbff4; | |
| margin-top: 20px; | |
| background-color: #d3edff; | |
| border: none; | |
| font-weight: bold; | |
| } | |
| .qs-style textarea { | |
| height: 100px; | |
| } | |
| .qs-style input:focus { | |
| background: #FFFFCC; | |
| } | |
| </style> | |
| <div class="qs-style"> | |
| <form action=”https://<SCHOOLCODE>.quickschools.com/sms/api/v1/enquiries/submit.html” method=”POST” target=”_top”> | |
| <p>Inquirer Name:</p> <input name="enquirer-name"> <br/> | |
| <p>Email:</p> <input name="enquirer-email"><br/> | |
| <p>Phone:</p> <input name="enquirer-phone"><br/> | |
| <p>Student Name:</p> <input name="studentName"><br/> | |
| <p>Age:</p> <input name="age" value="15"><br/> | |
| <p>Questions/comments:</p> <textarea name="enquiry-description"></textarea><br/> | |
| <br/> | |
| <input type="hidden" name="schoolId" value="<SCHOOLID>"> | |
| <input type="hidden" name="schoolCode" value="<SCHOOLCODE>"> | |
| <input type="hidden" name="userApiKey" value="<USERAPIKEY>"> | |
| <input type="hidden" name="successUrl" value="http://fill-in-here"> | |
| <input type="submit" value="Submit Inquiry" class="submit"> | |
| </form> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment