client-ui
Version:
Testing implementation of nodeJs Backend, angular frontend, and hopefully in a way that this can be deployed to s3/cloudfront
78 lines (71 loc) • 3.53 kB
HTML
<html lang="en">
<head>
<title>Thanks for verifying email!</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- homepage:css -->
<!-- endinject -->
</head>
<body>
<div id="nav"></div>
<div class="container text-center">
<div class="row">
<img src="images/email-verification-nav-progress.png">
<div class="col-md-offset-1 col-md-10">
<div class="row">
<div class="col-md-4">
<img class="marketing-icon" src="images/rocket-main.svg"/>
</div>
<div class="col-md-8">
<div>
<div id="status-message-progress-712136">
<h3>Validating your request...</h3>
<h4></h4>
</div>
<div class="display-none" id="status-message-success-101397">
<h3>Thank you for verifying your email</h3>
<!--DISPLAY MESSAGE FOR IE9-->
<!--[if IE 9]>
<h6>This site does not support IE9 or below. Please continue your loan on an upgraded version of IE, Google Chrome, or Firefox.</h6>
<![endif]-->
<button id="continue-loan" type="button" class="btn btn-success large-btn btn-wide" onclick="location.href = 'app.html#/login?gonext=true'">Continue</button>
</div>
<div class="display-none" id="status-message-error-449700">
<h3>We were unable to process this request.</h3>
<h4>Click the Chat Button on the bottom right of your screen chat with our customer support.</h4>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--footer-->
<div id="footer"></div>
<!-- emailValidation:js -->
<!-- endinject -->
<!-- header -->
<script> $(function () {
$("#nav").load("nav-header/nav-header-static.html");
});</script>
<!--footer-->
<script> $(function () {
$("#footer").load("footer/footer.html");
});
</script>
<!--HIDE APP FROM ALL IE VERSIONS LESS THAN 9-->
<!--[if lt IE 9]>
<script type="text/javascript">
document.getElementsByTagName('body')[0].innerHTML = "<h1>This site does not support IE9 or below. Please copy and paste this link into an upgraded IE, Google Chrome, or Firefox.</h1>";
</script>
<![endif]-->
<!--HIDE CONTINUE BUTTON IN IE9-->
<!--[if IE 9]>
<script type="text/javascript">
document.getElementById('continue-loan').style.visibility = 'hidden';
</script>
<![endif]-->
<!--GOOGLE ANALYTICS-->
<script> if(config.isProduction()){ config.initializeGoogleAnalytics('/email-validation'); }</script>
</body>
</html>