<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>How to resume your survey</title>
<!-- This file must be named resume.html for WebHost to use it -->

<!-- Here are embedded styles. You cannot upload an external css, though you can link to one that is available elsewhere -->

<style>
body {
margin: 0px;
padding: 0px;
font: bold 14px "Trebuchet MS", Arial, Helvetica, sans-serif;
color: #333;
background: #F4F4F4;
}

#snap_thanks {
background: #FFF;
padding: 30px 40px;
border-top: 5px solid #8CC63E;
}

h1 {
font: 28px "Trebuchet MS", Arial, Helvetica, sans-serif;
margin-bottom: 0.5em;
}

h2 {
font: bold normal 18px/20px "Trebuchet MS", Arial, Helvetica, sans-serif;
margin-bottom: 1em;
color: #8CC63E;
}

.Button {
text-decoration: none;
font-size: 14px;
font-weight: bold;
margin-top: 20px;
margin-right: 10px;
border-right: 1px solid #CCC;
padding: 10px;
}
</style>

</head>
<body>
<div id="snap_thanks">
<!-- Here are links to an image that is stored elsewhere on the internet. You cannot upload images to use with this file -->
<img id="snap-logo" src="https://www.snapsurveys.com/images/thank-you/powered-by-snap.gif" alt="Powered by Snap Surveys" width="176" height="32" />
<div>
<img id="tick" src="https://www.snapsurveys.com/images/thank-you/tick-badge.png" alt="" width="88" height="77" />
<h1>Thanks for taking part</h1>
<h2>Your responses have been saved but not submitted.</h2>
<h2> You can come back and complete the survey by using this link </h2>
<!-- you must use the ResumeUrl string as your link, as shown below. Snap WebHost will substitute the real survey link wherever it says [[:ResumeUrl:]] -->
<h2> <a href="[[:ResumeUrl:]]">[[:ResumeUrl:]]</a></h2>
<p>Bookmark this page, so you can come back.
We'd really like your response.</p>
<p>If you want, enter your email address and we'll send you the link.</p>
<p>(We won't keep your email)</p>

<!-- This form communicates with Snap WebHost, triggering WebHost to send a default email to the specified address -->
<!-- You need to write a script that checks if the email address is valid on submit-->
<form action="surveyresume.asp" method="post">
<table border="0">
<tr>
<!-- this passes the required information to WebHost to be put in the email -->
<td>Email address:</td>
<td>
<input type="text" id="email" name="email" >
</td>
</tr>
<tr>
<!-- this enables you to write a script to check the email address (script not included) -->
<td>Confirm email address:</td>
<td>
<input type="text" id="confirmemail" name="confirmemail" >
</td>
</tr>
<tr>
<td colspan="2" align="center">
<!-- this submits the required information to WebHost -->
<input id="submit" name="submit" type="submit" value="Send" class="Button" >
<input type="reset" value="Reset" class="Button" >
</td>
</tr>
</table>
<!-- this passes the information about the survey URL to WebHost to be put in the email -->
<input type="hidden" name="surveykey" id="surveykey" value="[[:SurveyKey:]]" >
<input type="hidden" name="resumeurl" id="resumeurl" value="[[:ResumeUrl:]]" >
<input type="hidden" id="SnapSession" name="SnapSession" value="[[:SessionId:]]" >
</form>
</td>
</tr>
</table>
</div>
</body>
</html>