
<!doctype html>
<html lang="en">
	<head>
		<meta charset="UTF-8">
		<meta name="viewport" content="width=device-width, initial-scale=1">
		<meta name="theme-color" content="#007ac1" />
		<title>Bobs Stores Customer Email Signup</title>
		<link href="images/favicon.ico" rel="shortcut icon"/>
		<link rel='stylesheet'  href='css/normalize.css' type='text/css' media='all' />
		<link rel='stylesheet'  href='css/style.css' type='text/css' media='all' />
	</head>
	<body>
		<div class="main-container">
			<div id="frosted-glass"></div>
			<div class="signup-container">
				<div class="logo">
					<img src="images/bobslogo.png" alt="Bobs Stores" />
				</div>
				<div id="form-content">
										<h1>Bob's Stores Email Signup</h1>
					<p>Enter your verification code and email address below to get great deals</p>
					<span class="error-text generalError"></span>
					<form id="email-signup" action="submit.php" name="subscribeForm" method="post">
						<div class="form-row required" aria-required="true">
							<label for="valCode">Verification Code</label>
							<span class="error-text valcode"></span>
							<input autocomplete="off" placeholder="Verification Code" maxlength="5" id="valcode" type="text" name="valCode" aria-required="true">
						</div>
						<div class="form-row required" aria-required="true">
							<label for="emailAddress">Email Address</label>
							<span class="error-text emailaddress"></span>
							<input autocomplete="off" placeholder="Email Address" id="emailaddress" type="text" name="emailAddress" aria-required="true">
						</div>
						<div class="form-row required" aria-required="true">
							<label for="confirmEmailAddress">Confirm Email Address</label>
							<span class="error-text confirmemailaddress"></span>
							<input autocomplete="off" placeholder="Confirm Email Address" id="confirmemailaddress" type="text" name="confirmEmailAddress" aria-required="true">
						</div>
						<!--  -->
						<input id="submit" class="button g-recaptcha" data-sitekey="6Lf4MiUUAAAAAJEIZ70hQGroCwRbh0QLcLpEZ0SU" data-callback="gReCapSubmit" type="submit" value="Submit">
					</form>
									</div>
			</div>
		</div>
		<script src='https://www.google.com/recaptcha/api.js' async defer></script>
		<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
		<script type="text/javascript">
			(function(app){
				app.resources = {"PLACEHOLDER_valCode":"Verification Code","PLACEHOLDER_email":"Email Address","PLACEHOLDER_confirmEmail":"Confirm Email Address","ERROR_general":"There Was an Error, Please Try Again Soon","ERROR_noValCode":"Please Enter Your Verification Code","ERROR_invalidValCode":"Verification Codes Must be 5 Characters Long and Contain Only Numbers and Letters","ERROR_valCodeNotFound":"The Verification Code Was Not Found. Please Try Again","ERROR_nonMatchEmail":"Please Make Sure Your Email Addresses match","ERROR_invalidEmail":"Please Enter a Valid Email Address","ERROR_invalidConfirmEmail":"Please Confirm Email Address","ERROR_codeUsedDifferentEmail":"This Code has Already Been Used with a Different Email Address","ERROR_codeUsedSameEmail":""}			}(window.app = window.app || {}));
		</script>
		<script>
			(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
			(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
			m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
			})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');

			ga('create', 'UA-7228290-4', 'auto');
			ga('send', 'pageview');
		</script>
		<script src="js/app.js"></script>
	</body>
</html>