sake-app/index.html

17 lines
464 B
HTML
Raw Permalink Normal View History

2023-09-23 19:12:01 +02:00
<!doctype html>
2023-07-26 19:33:29 +02:00
<html lang="en">
2023-07-30 11:53:27 +02:00
<head>
2023-09-23 19:12:01 +02:00
<meta charset="utf-8">
2023-07-30 11:53:27 +02:00
<link rel="icon" href="favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sub-Address KEy</title>
</head>
<body>
<div id="app"></div>
2023-07-30 11:53:27 +02:00
<script type="module" src="src/main.js"></script>
<noscript>
<p>This application's main purpose is to compute values on the client side, therefore JavaScript is required.</p>
</noscript>
2023-07-30 11:53:27 +02:00
</body>
2023-07-26 19:33:29 +02:00
</html>