mirror of
https://github.com/BobbyWibowo/lolisafe.git
synced 2025-01-19 01:31:34 +00:00
4923cf9800
* Added No-JS uploader page (it's on /nojs). * Updated uploadsController.processFilesForDisplay() to support requests from No-JS uploader page. * Added "Bash uploader" link to footer. * Updated icons (added terminal icon for "Bash uploader" footer link).
168 lines
6.7 KiB
Handlebars
168 lines
6.7 KiB
Handlebars
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
<meta name="description" content="A pomf-like file uploading service that doesn't suck.">
|
|
<meta name="keywords" content="upload,lolisafe,file,images,hosting,bobby,fiery">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
<title>safe.fiery.me – A small safe worth protecting.</title>
|
|
|
|
<!-- Stylesheets and scripts -->
|
|
<link rel="stylesheet" type="text/css" href="libs/bulma/bulma.min.css?v=vvtL7Y3cjD">
|
|
<link rel="stylesheet" type="text/css" href="libs/fontello/fontello.css?v=cjjyPrikAR">
|
|
<link rel="stylesheet" type="text/css" href="css/style.css?v=vvtL7Y3cjD">
|
|
|
|
<!-- Open Graph tags -->
|
|
<meta property="og:type" content="website" />
|
|
<meta property="og:title" content="safe.fiery.me – A small safe worth protecting." />
|
|
<meta property="og:url" content="https://safe.fiery.me/" />
|
|
<meta property="og:description" content="A pomf-like file uploading service that doesn't suck." />
|
|
<meta property="og:image" content="https://safe.fiery.me/icons/600px.png" />
|
|
<meta property="og:image:width" content="600" />
|
|
<meta property="og:image:height" content="600" />
|
|
<meta property="og:image" content="https://safe.fiery.me/images/fb_share.png" />
|
|
<meta property="og:image:width" content="1200" />
|
|
<meta property="og:image:height" content="630" />
|
|
<meta property="og:locale" content="en_US" />
|
|
|
|
<!-- Twitter Card tags -->
|
|
<meta name="twitter:card" content="summary">
|
|
<meta name="twitter:title" content="safe.fiery.me – A small safe worth protecting.">
|
|
<meta name="twitter:description" content="A pomf-like file uploading service that doesn't suck.">
|
|
<meta name="twitter:image" content="https://safe.fiery.me/icons/600px.png">
|
|
|
|
<!-- Icons and configs -->
|
|
<link rel="icon" type="image/png" href="https://safe.fiery.me/icons/32pxr.png" sizes="32x32">
|
|
<link rel="icon" type="image/png" href="https://safe.fiery.me/icons/96pxr.png" sizes="96x96">
|
|
<link rel="apple-touch-icon" href="https://safe.fiery.me/icons/120px.png" sizes="120x120">
|
|
<link rel="apple-touch-icon" href="https://safe.fiery.me/icons/152px.png" sizes="152x152">
|
|
<link rel="apple-touch-icon" href="https://safe.fiery.me/icons/167px.png" sizes="167x167">
|
|
<link rel="apple-touch-icon" href="https://safe.fiery.me/icons/180px.png" sizes="180x180">
|
|
<link rel="manifest" href="https://safe.fiery.me/icons/manifest.json?v=V2RnA3Mwhh">
|
|
<meta name="apple-mobile-web-app-title" content="safe.fiery.me">
|
|
<meta name="application-name" content="safe.fiery.me">
|
|
<meta name="msapplication-config" content="https://safe.fiery.me/icons/browserconfig.xml?v=V2RnA3Mwhh">
|
|
<meta name="theme-color" content="#232629">
|
|
|
|
<style>
|
|
#form input {
|
|
width: 100%;
|
|
}
|
|
|
|
#links {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
#links a {
|
|
display: block;
|
|
margin: 5px;
|
|
}
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<section class="hero is-fullheight has-text-centered" id="home">
|
|
<div class="hero-body section">
|
|
<div class="container">
|
|
<p id="b">
|
|
<img class="logo" src="images/logo_smol.png">
|
|
</p>
|
|
<h1 class="title">safe.fiery.me</h1>
|
|
<h2 class="subtitle">A
|
|
<strong>modern</strong> self-hosted file upload service</h2>
|
|
|
|
<div class="columns">
|
|
<div class="column is-hidden-mobile"></div>
|
|
<div class="column">
|
|
<div class="content">
|
|
<form id="form" action="" method="post" enctype="multipart/form-data">
|
|
<div class="field">
|
|
<input type="file" name="files[]" multiple="multiple">
|
|
</div>
|
|
<div class="field">
|
|
<input type="submit" class="button is-danger" value="Upload">
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<div class="content">
|
|
<p>Files uploaded through this No JS form will not be associated to your account, if you have any.</p>
|
|
</div>
|
|
</div>
|
|
<div class="column is-hidden-mobile"></div>
|
|
</div>
|
|
|
|
{{#if files}}
|
|
<div id="uploads" style="display: block">
|
|
{{#each files}}
|
|
<div class="columns">
|
|
<div class="column is-hidden-mobile"></div>
|
|
<div class="column">
|
|
{{#if this.image}}
|
|
<img class="is-unselectable" style="max-width: 200px" src="{{ this.url }}">
|
|
{{/if}}
|
|
<p class="link">
|
|
<a href="{{ this.url }}" target="_blank">{{{ this.url }}}</a>
|
|
</p>
|
|
</div>
|
|
<div class="column is-hidden-mobile"></div>
|
|
</div>
|
|
{{/each}}
|
|
</div>
|
|
{{/if}}
|
|
|
|
<h3 id="links">
|
|
<a href="https://fiery.me" title="Home">
|
|
<span class="icon is-medium">
|
|
<i class="icon-home icon-2x"></i>
|
|
</span>
|
|
</a>
|
|
<a href="https://blog.fiery.me" title="Blog">
|
|
<span class="icon is-medium">
|
|
<i class="icon-archive icon-2x"></i>
|
|
</span>
|
|
</a>
|
|
<a href="https://safe.fiery.me/sharex.txt" title="ShareX">
|
|
<span class="icon is-medium">
|
|
<i class="icon-sharex icon-2x"></i>
|
|
</span>
|
|
</a>
|
|
<a href="https://chrome.google.com/webstore/detail/loli-safe-uploader/enkkmplljfjppcdaancckgilmgoiofnj" target="_blank" title="Chrome extension">
|
|
<span class="icon is-medium">
|
|
<i class="icon-chrome icon-2x"></i>
|
|
</span>
|
|
</a>
|
|
<a href="https://github.com/BobbyWibowo/uguush/tree/lolisafe-kde" target="_blank" title="Bash uploader">
|
|
<span class="icon is-medium">
|
|
<i class="icon-terminal icon-2x"></i>
|
|
</span>
|
|
</a>
|
|
<a href="faq" title="FAQ">
|
|
<span class="icon is-medium">
|
|
<i class="icon-help-circled icon-2x"></i>
|
|
</span>
|
|
</a>
|
|
<a href="auth" title="Dashboard">
|
|
<span class="icon is-medium">
|
|
<i class="icon-gauge icon-2x"></i>
|
|
</span>
|
|
</a>
|
|
<a href="https://github.com/BobbyWibowo/lolisafe" target="_blank" title="GitHub">
|
|
<span class="icon is-medium">
|
|
<i class="icon-github-circled icon-2x"></i>
|
|
</span>
|
|
</a>
|
|
</h3>
|
|
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
</body>
|
|
</html>
|