-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpay.html
54 lines (52 loc) · 1.81 KB
/
pay.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Redirecting to Payment</title>
<meta http-equiv="refresh" content="0; url=https://buy.stripe.com/fZe3cweU4fQybReeUX">
<!-- Include your existing stylesheet links -->
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="styles.css">
<!-- Include any additional fonts or icons -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="stylesheet" href="https://use.typekit.net/tlf2euo.css">
<link rel="shortcut icon" type="image/jpg" href="your-favicon-link-here"/>
</head>
<body>
<style>
/* Loading Spinner Styles */
.loading-spinner {
border: 12px solid #f3f3f3; /* Light grey */
border-top: 12px solid #3498db; /* Blue */
border-radius: 50%;
width: 80px;
height: 80px;
animation: spin 1s linear infinite;
margin: 100px auto; /* Center vertically and horizontally */
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
</style>
<!-- Navbar -->
<div class="navbar">
<a href="index.html" class="logo">
<img class="logo-image"
src="https://res.cloudinary.com/lesswrong-2-0/image/upload/v1629334277/Lightcone-02_stkgik.svg"
/>
<div class="navbar-title">Lighthaven</div>
</a>
<a href="https://airtable.com/your-inquiry-link" class="CTA-button-navbar" target="_blank">
Submit an inquiry
</a>
</div>
<!-- Content Area -->
<div class="content-area">
<section class="center-section">
<!-- Loading Spinner -->
<div class="loading-spinner"></div>
</section>
</div>
</body>
</html>