-
Notifications
You must be signed in to change notification settings - Fork 1
/
trilogy-form-optin.html
34 lines (30 loc) · 1.28 KB
/
trilogy-form-optin.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
<script type="text/javascript" src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.10.1.min.js"></script>
<script type="text/javascript" src="http://ajax.aspnetcdn.com/ajax/jquery.validate/1.11.1/jquery.validate.min.js"></script>
<script type="text/javascript" src="http://trilogyformsdev.azurewebsites.net/scripts/jquery.trilogyforms-1.0.js"></script>
</head>
<body>
<form action='http://trilogyformsdev.azurewebsites.net/save' method="post" id="action-form" class="trilogy-form">
<h1>Join Form</h1>
<div class='form-line'>
<input type='text' class='required email' placeholder='Email' name='EmailAddress' />
</div>
<div class='form-line'>
<input type="hidden" id="emailoptin" name="EmailOptIn" value="false" />
<label for="emailoptin"><input type="checkbox" id="emailoptin" name="EmailOptIn" value="true" />Email Opt In</label>
</div>
<div class='form-line'>
<button type='submit'>Submit</button>
<input type="hidden" name="ActivityCode" value="dev-join-form" />
</div>
</form>
<div id="action-form-response" style="display: none;">
<h1>Join Form Submitted</h1>
<p>Thank you for submitting the join form.</p>
</div>
</body>
</html>