-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfirm.html
More file actions
executable file
·30 lines (29 loc) · 1.15 KB
/
confirm.html
File metadata and controls
executable file
·30 lines (29 loc) · 1.15 KB
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
<!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>Message Sent | Markkup</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous">
<script src="https://use.fontawesome.com/bcc65d42d2.js"></script>
<link rel="stylesheet" href="css/site.css">
</head>
<body>
<header>
<img class="logo" src="images/markkup-logo-light.png" style="width:150px;" alt="markkup" />
</header>
<section class="content">
<h2>Your message was sent. We'll get back to you shortly.</h2>
<a href="/"><i class="fa fa-chevron-left" aria-hidden="true"></i> RETURN</a>
</section>
<footer id="footer" style="margin-top:120px;">
<ul class="copyright">
<li>© Markkup 2017</li>
</ul>
</footer>
<script src="js/jquery-1.12.1.min.js"></script>
<script src="js/jquery.validate.min.js"></script>
<script src="js/form.js"></script>
<script src="js/site.js"></script>
</body>
</html>