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
2024-10-06 23:54:41 +00:00

28 lines
1,020 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>furao.link</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>
<img src="/static/furao.png" alt="furao link image">
<h1>furao.link <a href="/static/about.html"><img src="/static/help-circle.svg" alt="info"></a></h1>
<p id="msg">a simple link shortener</p>
<form id="form">
<input id="url" placeholder="enter a link" type="text" required>
</form>
<p id="msg"><details>
<summary>one rule</summary>
furao.link must not be used to upload malware, pornography, or anything that could be a legal risk. that's it.
</details></p>
</main>
<script src="/static/index.js"></script>
</body>
</html>