gull/public/index.html

42 lines
1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>nolog.link</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Radikální zkracovač odkazů / Radical URL shortener" />
<link rel="icon" href="data:,">
<link href="style.css" rel="stylesheet" />
</head>
<body>
<main>
<script>
document.title = document.domain;
</script>
<script async defer src="index.js"></script>
<form id="url-form">
<input id="url" name="url" type="text" placeholder="paste a long url" autofocus required />
<input id="alias" name="alias" type="text" placeholder="custom alias (optional)" />
<button id="btn" class="gradient-text">shorten</button>
</form>
<div id="result"></div>
</main>
<footer>
<a href="https://github.com/aeolyus/gull">
made by aeolyus,
</a>
<a href="https://nolog.cz">
hosted by NoLog.cz
</a>
</footer>
</body>
</html>