init commit
This commit is contained in:
64
index.html
Normal file
64
index.html
Normal file
@@ -0,0 +1,64 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en" class="no-js">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
|
||||
<title>SURE - Secure URL Requests</title>
|
||||
|
||||
<script type="module">
|
||||
document.documentElement.classList.remove("no-js");
|
||||
document.documentElement.classList.add("js");
|
||||
</script>
|
||||
|
||||
<meta name="description" content="Securely request information via SURE links" />
|
||||
<meta property="og:title" content="SURE - Secure URL Requests" />
|
||||
<meta property="og:description" content="Securely request information via SURE links" />
|
||||
<meta property="og:image" content="https://sure.dog/img/logo.png" />
|
||||
<meta property="og:image:alt" content="Abstract logo of the letter S" />
|
||||
<meta property="og:locale" content="en_US" />
|
||||
<meta property="og:type" content="website" />
|
||||
<meta name="twitter:card" content="summary_large_image" />
|
||||
<meta property="og:url" content="https://sure.dog/" />
|
||||
<link rel="canonical" href="https://sure.dog/" />
|
||||
|
||||
<link rel="icon" href="/favicon.ico" />
|
||||
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
|
||||
|
||||
<link rel="manifest" href="/manifest.json" />
|
||||
<meta name="mobile-web-app-capable" content="yes" />
|
||||
<meta name="apple-mobile-web-app-capable" content="yes" />
|
||||
<meta name="application-name" content="SURE" />
|
||||
<meta name="apple-mobile-web-app-title" content="SURE" />
|
||||
<meta name="theme-color" content="#44a616" />
|
||||
<meta name="msapplication-navbutton-color" content="#44a616" />
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
|
||||
<meta name="msapplication-starturl" content="/" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<header class="container">
|
||||
<hgroup>
|
||||
<h1>SURE</h1>
|
||||
<p>Secure URL Requests</p>
|
||||
</hgroup>
|
||||
</header>
|
||||
|
||||
<!-- No JS Warning -->
|
||||
<dialog open class="js-warning">
|
||||
<article>
|
||||
<header>No Javascript Detected</header>
|
||||
<p>
|
||||
Unfortunately, this site requires Javascript in order to generate
|
||||
keypairs, save them in localstorage, and encrypt/decrypt data. Please
|
||||
enable Javascript and refresh the page.
|
||||
</p>
|
||||
</article>
|
||||
</dialog>
|
||||
|
||||
<main id="app" class="container"></main>
|
||||
<script type="module" src="/src/main.ts"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
Reference in New Issue
Block a user