<!---
	Check to see if the user has been authenticated. If not, kick
	them back to the login page where they will have the chance
	to authenticate.
--->
<cfif !session.isAuthenticated>

	<!---
		Danger!! The user is not authenticated. Kick them back to
		the login page where they will have a change to authenticate
		via their phone.
	--->
	<cflocation
		url="./login.cfm"
		addtoken="false"
		/>

</cfif>


<!--- ----------------------------------------------------- --->
<!--- ----------------------------------------------------- --->


<!--- Reset the content buffer and set the mime-type. --->
<cfcontent type="text/html" />

<cfoutput>

	<!DOCTYPE html>
<html>
<head>
<title>You Have Been Authenticated Via Twilio And Pusher</title>
</head>
<body>

		<h1>
			You Have Been Authenticated Via Twilio And Pusher
		</h1>

		<p>
			<img src="./muscle.jpg" width="500" />
		</p>

		<p>
			Groovy!
		</p>

</body>
</html>

</cfoutput>