gull/public/index.html

43 lines
1 KiB
HTML
Raw Normal View History

2020-05-12 04:19:28 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<title>nolog.link</title>
2020-05-12 04:19:28 +02:00
<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:,">
2020-05-13 20:52:18 +02:00
<link href="style.css" rel="stylesheet" />
2020-05-12 04:19:28 +02:00
</head>
<body>
2020-05-17 02:44:45 +02:00
<main>
<script>
document.title = document.domain;
</script>
2020-09-08 13:10:18 +02:00
<script async defer src="index.js"></script>
2020-05-17 02:44:45 +02:00
<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">
2020-06-09 09:27:21 +02:00
made by aeolyus,
</a>
<a href="https://nolog.cz">
hosted by NoLog.cz
2020-05-17 02:44:45 +02:00
</a>
</footer>
2020-05-17 02:44:45 +02:00
</body>
2020-05-12 04:19:28 +02:00
</html>