kv-download/templates/media/index.html
2020-02-08 11:22:14 -08:00

38 lines
1.6 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<title>media-roller</title>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="/static/css/style.css">
</head>
<body>
<div class="container d-flex flex-column text-light text-center">
<div class="flex-grow-1"></div>
<div class="jumbotron bg-transparent flex-grow-1">
<h1 class="display-4"><a class="text-light" href="/">media roller</a></h1>
<p>
Mobile friendly tool for downloading videos from social media
</p>
<div>
<form action="/fetch" method="GET">
<div class="input-group">
<input name="url" type="url" class="form-control" placeholder="URL" aria-label="URL"
aria-describedby="button-submit" autofocus>
<div class="input-group-append">
<button class="btn btn-primary" type="submit" id="button-submit">Submit</button>
</div>
</div>
</form>
</div>
</div>
<footer>
<div>
<p class="text-muted">Source at <a class="text-light" href="https://github.com/rroller/media-roller">https://github.com/rroller/media-roller</a>
</p>
</div>
</footer>
</div>
</body>
</html>