mirror of
https://github.com/Luzifer/share.git
synced 2024-12-20 18:41:17 +00:00
86 lines
3.4 KiB
HTML
86 lines
3.4 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<!-- Required meta tags -->
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
|
<!-- Bootstrap CSS -->
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0/css/bootstrap.min.css"
|
|
integrity="sha256-LA89z+k9fjgMKQ/kq4OO2Mrf8VltYml/VES+Rg0fh20=" crossorigin="anonymous" />
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootswatch/4.0.0/darkly/bootstrap.min.css"
|
|
integrity="sha256-bhD4/DdCApNAYlOpvKssUa2hD0Du8xrgOvtY4w25shM=" crossorigin="anonymous" />
|
|
|
|
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.10/css/all.css"
|
|
integrity="sha384-+d0P83n9kaQMCwj8F4RJB66tzIwOKmrdb46+porD/OvrJ+37WqIM7UoBtwHO6Nlg" crossorigin="anonymous">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/styles/androidstudio.min.css"
|
|
integrity="sha256-rEVnyeMfkKzmBwocdeeiqGOu1M/ttUHB7K0meKIwqvw=" crossorigin="anonymous" />
|
|
|
|
<title>Share</title>
|
|
|
|
<style>
|
|
h1 { text-align: center; font-size: 75px; }
|
|
h2 { text-align: center; font-size: 24px; }
|
|
pre code { color: #e83e8c; }
|
|
.container { margin-top: 30px; }
|
|
.show-generic, .show-image, .show-video, .show-error { display: none; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<nav class="navbar navbar-expand-lg navbar-dark bg-primary">
|
|
<a class="navbar-brand" href="#"><i class="fas fa-share-alt-square"></i>
|
|
<span class="apptitle">Share</span></a>
|
|
</nav>
|
|
|
|
<div class="container show-loading">
|
|
<h1>
|
|
<i class="fas fa-spinner fa-pulse" aria-hidden="true"></i>
|
|
</h1>
|
|
</div>
|
|
|
|
<div class="container show-generic">
|
|
<h1>
|
|
<i class="fas fa-cloud-download-alt"></i>
|
|
</h1>
|
|
<h2><a href="#" class="filelink-href filename">untitled</a></h2>
|
|
</div>
|
|
|
|
<div class="container show-image text-center">
|
|
<a href="#" class="filelink-href">
|
|
<img src="" class="img-fluid filelink-src">
|
|
</a>
|
|
</div>
|
|
|
|
<div class="container show-video">
|
|
<div class="embed-responsive embed-responsive-16by9">
|
|
<video controls>
|
|
</video>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="container show-text">
|
|
<pre><code></code></pre>
|
|
</div>
|
|
|
|
<div class="container show-error">
|
|
<h1>
|
|
<i class="fas fa-exclamation-circle"></i>
|
|
</h1>
|
|
<h2 class="error"></h2>
|
|
</div>
|
|
|
|
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"
|
|
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.1/popper.min.js"
|
|
integrity="sha256-ST2MecrXrJaAsqmfpk9XRQITlDoyMmUtgKBEndDisSc=" crossorigin="anonymous"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0/js/bootstrap.min.js"
|
|
integrity="sha256-5+02zu5UULQkO7w1GIr6vftCgMfFdZcAHeDtFnKZsBs=" crossorigin="anonymous"></script>
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/highlight.min.js"
|
|
integrity="sha256-/BfiIkHlHoVihZdc6TFuj7MmJ0TWcWsMXkeDFwhi0zw=" crossorigin="anonymous"></script>
|
|
|
|
<script src="app.js"></script>
|
|
</body>
|
|
</html>
|