-
Notifications
You must be signed in to change notification settings - Fork 1
/
not-implemented.html
28 lines (28 loc) · 968 Bytes
/
not-implemented.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Coming Soon</title>
<!-- Load the Font Awesome icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" />
<!-- Load the cs.css file -->
<link rel="stylesheet" href="cs.css" />
</head>
<body>
<!-- Create a div element for the main container -->
<div id="main-container">
<!-- Create a div element for the coming soon message -->
<div id="coming-soon">
<i class="fas fa-exclamation-triangle"></i>
<h1>Coming Soon</h1>
<p>This feature ain't here yet... but it's in the works!</p>
<p>Check back later for updates.</p>
<button id="back-button">
<i class="fas fa-arrow-left"></i>
<span>Back</span>
</button>
</div>
</div>
<script src="ainthereyet.js"></script>
</body>
</html>