NXInspired/samples/multiple-buttons.html
mctaylors 585af1fbd3
We've moved!
Signed-off-by: mctaylors <cantsendmails@mctaylors.ru>
2024-05-14 21:08:31 +05:00

51 lines
No EOL
2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<title>NXInspired</title>
<link rel="icon" href="/assets/svg/nxinspired.svg"/>
<link rel="stylesheet" href="/assets/css/style.css"/>
<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 class="left" onclick="close_button('https://git.mctaylors.ru/mctaylors/NXInspired')">
<span>Close</span>
</button>
<button class="right" onclick="details_button()">
<span>Details</span>
</button>
</div>
</div>
<div class="details" id="details">
<div class="details-content">
<p class="error-code">
Error Code: 404
</p>
<div class="description">
<p>In computer network communications, the HTTP 404, 404 not found, 404, 404 error, page not found, or file not
found error message is a hypertext transfer protocol (HTTP) standard response code, to indicate that the browser
was able to communicate with a given server, but the server could not find what was requested. The error may
also be used when a server does not wish to disclose whether it has the requested information.</p>
<p>The website hosting server will typically generate a "404 Not Found" web page when a user attempts to follow a
broken or dead link; hence the 404 error is one of the most recognizable errors encountered on the World Wide
Web.</p>
</div>
</div>
<button onclick="close_button('https://git.mctaylors.ru/mctaylors/NXInspired')">
<span>OK</span>
</button>
</div>
<script type="text/javascript" src="/assets/js/main.js"></script>
</body>
</html>