This repository has been archived on 2024-06-12. You can view files and clone it, but cannot push or open issues or pull requests.
ipserv/cert/index.html

46 lines
No EOL
1.7 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>SHRoNK IP Specification test</title>
<script src="./script.js" defer></script>
<style>
html {
font-family: sans-serif;
background: #29242A;
color: #dddadd
}
code, pre {
overflow: wrap;
word-wrap: break-word;
font-family: "Ubuntu Mono", "Jetbrains Mono", "Consolas", monospace;
max-width: 100%;
white-space: pre-wrap
}
</style>
</head>
<body>
<h1>SHRoNK IP Online specification test</h1>
<p>This tool allows you to check the specification-following status of a SHRoNK IP server.</p>
<p>
This online tool allows you to quickly verify which parts of the
<a href="https://github.com/SHRoNK-Corporation/shronk-ip-spec/blob/d1ca0b7/RFS0001.md" target="_blank" rel="noopener">SHRoNK IP specification</a>
are properly implemented by a SHRoNK IP server.
</p>
<blockquote>
Warning! This tool cannot test for <strong>non-CORS enabled</strong> servers!
If the server does not have CORS enabled, this tool will not be able to test the server.
</blockquote>
<hr/>
<div>
<form>
<label for="server">Server URL:</label>
<input type="url" id="server" name="server" placeholder="https://example.com" required>
<button type="submit">Test</button>
</form>
<br/>
<code><pre id="results"></pre></code>
</div>
</body>
</html>