Add single-button.html

Signed-off-by: mctaylors <cantsendmails@mctaylors.ru>
This commit is contained in:
Macintxsh 2024-05-02 20:25:28 +05:00
parent 6ba00cbce2
commit c0955b4fdf
Signed by: mctaylors
GPG key ID: 7181BEBE676903C1
2 changed files with 26 additions and 0 deletions

26
single-button.html Normal file
View file

@ -0,0 +1,26 @@
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8" />
<title>NXInspired</title>
<link rel="stylesheet" href="/assets/css/style.css" />
<script type="text/javascript" src="/assets/js/main.js"></script>
<audio id="click" src="/assets/wav/click.wav"></audio>
<audio id="error" src="/assets/wav/error.wav"></audio>
</head>
<body>
<div class="background-image"></div>
<div class="dialog">
<p class="error-code">
Error Code: 404
</p>
<div class="description">
<p>Not Found.</p>
<p>Server cannot find the requested resource. Make sure the link is spelled correctly.</p>
</div>
<button onclick="close_button('https://github.com/mctaylors/NXInspired')">
<span>Close</span>
</button>
</div>
</body>
</html>