38 lines
1.2 KiB
HTML
38 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>shrt</title>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="public/style.css">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<main>
|
|
<div class="container">
|
|
<form id="shorten-form" method="POST">
|
|
<input id="url" type="text" placeholder="URL" name="url">
|
|
<input id="submit" type="submit" value="Shorten!">
|
|
</form>
|
|
<div class="row">
|
|
<div class="column">
|
|
<section id="shortened">
|
|
<p>
|
|
<em>Your shortened link: </em>
|
|
<a id="link" href="#" target="_blank">Loading...</a>
|
|
</p>
|
|
<p>
|
|
Right-click or Tap & Hold the link and copy the address to clipboard and start using it.
|
|
</p>
|
|
</section>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
|
|
<script src="https://cdn.jsdelivr.net/bluebird/latest/bluebird.min.js"></script>
|
|
<script src="https://npmcdn.com/axios/dist/axios.min.js"></script>
|
|
<script src="public/scripts.js"></script>
|
|
</body>
|
|
</html>
|