Skip to content

Instantly share code, notes, and snippets.

@rdallaire
Forked from emasters/GTWForm.inc
Created April 12, 2016 20:55
Show Gist options
  • Save rdallaire/412e981999808ad556aeadd22acc7ff8 to your computer and use it in GitHub Desktop.
Save rdallaire/412e981999808ad556aeadd22acc7ff8 to your computer and use it in GitHub Desktop.
This is a basic form for registering for a GoToWebinar webinar. The code can be pasted into a page and it will work. It needs to have the webinar key inserted where indicated. You can get the key from the GTW URL, it is the number that makes up the final element of the registration URL. Some fun styling has been added so the forms look neat on w…
<form action="https://www2.gotomeeting.com/en_US/island/webinar/registration.flow" method="post" name="webinarRegistrationForm">
<div id="regParent" class="regFields">
<input type="hidden" name="Template" value="island/webinar/registration.tmpl">
<input type="hidden" name="Form" value="webinarRegistrationForm">
<input type="hidden" name="WebinarKey" value="##INSERT WEBINAR KEY HERE##">
<input type="hidden" name="ViewArchivedWebinar" value="false">
<input type="hidden" name="registrant" value="">
<input type="hidden" name="RegistrantTimeZoneKey" id="RegistrantTimeZoneKey" value="64">
<div class="formRow">
<span class="error">*</span><label for="Name_First">First Name: </label> <input type="text" name="Name_First" id="Name_First" value="" maxlength="128" class="fis">
<div class="rtCol">
<span class="error">*</span><label for="Name_Last">Last Name: </label> <input type="text" name="Name_Last" id="Name_Last" value="" maxlength="128" class="fis">
</div>
</div>
<div class="formRow">
<span class="error">*</span><label for="Email">Email Address: </label><input type="text" name="Email" id="Email" value="" maxlength="128" class="fis">
</div>
<p><span class="error">*</span> Indicates a required field</p>
<p>By clicking the "Register For Free" button you submit your information to CALI, and we will use it to communicate with you regarding this event and our other services.</p>
<div class="submitForm">
<input type="submit" value="Register For Free" class="fbx">
</div>
</div>
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment