NXInspired/samples/single-button.html
mctaylors 8e786250f6
Add /samples/ and "black screen of death"
Signed-off-by: mctaylors <cantsendmails@mctaylors.ru>
2024-05-04 18:12:29 +05:00

28 lines
No EOL
958 B
HTML

<!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" id="dialog">
<div class="dialog-content" id="dialog-content">
<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>OK</span>
</button>
</div>
</div>
</body>
</html>