This repository has been archived on 2024-10-21. You can view files and clone it, but cannot push or open issues or pull requests.
furao-link/static/index.html

23 lines
719 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>kisalt</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=1200, initial-scale=1">
<link href="/static/global.css" rel="stylesheet">
<noscript>
this website uses simple fetch requests to interact with the API,
enable JavaScript or send your requests directly to /add?url=[url]
</noscript>
</head>
<body>
<main>
<a href="https://github.com/ngn13/kisalt"><h1>kisalt</h1></a>
<p id="msg">a simple link shortener</p>
<form id="form">
<input id="url" placeholder="enter a link" type="text" required>
</form>
</main>
<script src="/static/index.js"></script>
</body>
</html>