This repository has been archived by the owner on Apr 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
thanks.html
55 lines (53 loc) · 1.86 KB
/
thanks.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>CodeGrades - Thanks for getting in touch.</title>
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/main.css">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-119767955-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-119767955-1');
</script>
</head>
<body>
<div id="wrapper">
<main id="main">
<section class="how_it_works-section">
<div class="container">
<div class="row justify-content-center heading-row">
<div class="col col-md-10">
<h2>Thank you</h2>
<p>We have received your details and will be in touch very soon...</p>
<p class="text-sm-center"><a class="btn btn-success" href="/" id="back-home">Back to homepage</a></p>
</div>
</div>
</div>
</section>
</main>
<footer id="footer">
<div class="container">
<div class="row justify-content-between align-items-center">
<div class="col-12 col-lg-4">
<strong class="logo">
<a href="/" id="footer-logo"><img src="images/logo.svg" alt="CodeGrades"></a>
</strong>
</div>
<div class="col-12 col-lg-8">
<ul class="item-list">
<!--li><a href="/terms.html" id="footer-terms">Terms & Conditions</a></li-->
<li><a href="/privacy.html" id="footer-privacy">Privacy Policy</a></li>
<li>CodeGrades © 2018</li>
</ul>
</div>
</div>
</div>
</footer>
</div>
</body>
</html>