2020-05-12 04:19:28 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
|
|
|
|
<head>
|
2020-08-10 23:51:44 +02:00
|
|
|
<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" />
|
2020-08-10 23:51:44 +02:00
|
|
|
<meta name="description" content="Radikální zkracovač odkazů / Radical URL shortener" />
|
2020-05-16 01:51:55 +02:00
|
|
|
<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>
|
2020-08-10 23:51:44 +02:00
|
|
|
|
|
|
|
<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-14 23:23:37 +02:00
|
|
|
|
2020-05-17 02:44:45 +02:00
|
|
|
</body>
|
2020-05-14 23:23:37 +02:00
|
|
|
|
2020-05-12 04:19:28 +02:00
|
|
|
</html>
|