-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththankyou.html
32 lines (28 loc) · 1.52 KB
/
thankyou.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
<!-- FILEPATH: /Users/hung/Desktop/macmaindata/code/uncommonhacks/makes23_temp/signup.html -->
<!DOCTYPE html>
<html>
<head>
<title>Register for Makes</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Uncommon Hacks</title>
<meta name="description" content="Learn and build with technology with Uncommon Hacks." />
<!-- Favicon -->
<link rel="shortcut icon" type="image/png" href="images/favicon.png" />
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
<link href="css/signup.css" rel="stylesheet">
</head>
<body>
<div style="height: 100%;" class="container-fluid d-flex flex-column justify-content-center">
<div class="">
<h1 class="title text-center p-5">Thank you for registering!</h1>
<h3 class="subtitle text-center">We'll be in touch with you soon.</h3>
<a href="https://makes2023.uncommonhacks.com/"><h3 class="subtitle text-center">Back to Main Page</h3></a>
</div>
</div>
</div>
</body>
<script src="js/signup.js"></script>
</html>