2017-01-15 01:36:24 +00:00
<!DOCTYPE html>
< html >
2018-01-23 22:16:25 +00:00
< head >
< meta name = "description" content = "A pomf-like file uploading service that doesn't suck." >
< meta name = "keywords" content = "upload,lolisafe,file,images,hosting" >
< meta name = "viewport" content = "width=device-width, initial-scale=1.0" >
< meta http-equiv = "X-UA-Compatible" content = "IE=edge" >
2017-01-31 07:21:15 +00:00
2018-01-23 22:16:25 +00:00
< link rel = "apple-touch-icon" sizes = "180x180" href = "https://safe.fiery.me/images/icons/apple-touch-icon.png?v=ZqYs7M3fG4" >
< link rel = "icon" type = "image/png" href = "https://safe.fiery.me/images/icons/favicon-32x32.png?v=ZqYs7M3fG4" sizes = "32x32" >
< link rel = "icon" type = "image/png" href = "https://safe.fiery.me/images/icons/favicon-16x16.png?v=ZqYs7M3fG4" sizes = "16x16" >
< link rel = "manifest" href = "https://safe.fiery.me/images/icons/manifest.json?v=ZqYs7M3fG4" >
< link rel = "mask-icon" href = "https://safe.fiery.me/images/icons/safari-pinned-tab.svg?v=ZqYs7M3fG4" color = "#ffffff" >
< link rel = "shortcut icon" href = "https://safe.fiery.me/images/icons/favicon.ico?v=ZqYs7M3fG4" >
< meta name = "apple-mobile-web-app-title" content = "lolisafe" >
< meta name = "application-name" content = "lolisafe" >
< meta name = "msapplication-config" content = "https://safe.fiery.me/images/icons/browserconfig.xml?v=ZqYs7M3fG4" >
< meta name = "theme-color" content = "#232629" >
2017-01-31 07:29:50 +00:00
2018-01-23 22:16:25 +00:00
< meta property = "og:url" content = "https://safe.fiery.me" / >
< meta property = "og:type" content = "website" / >
< meta property = "og:title" content = "lolisafe.moe | A small safe worth protecting." / >
< meta property = "og:description" content = "A pomf-like file uploading service that doesn't suck." / >
< meta property = "og:image" content = "https://safe.fiery.me/images/logo_square.png" / >
2017-01-31 07:38:55 +00:00
2018-01-23 22:16:25 +00:00
< meta name = "twitter:card" content = "summary" >
< meta name = "twitter:title" content = "lolisafe.moe | 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/images/logo_square.png" >
< meta name = "twitter:image:src" content = "https://safe.fiery.me/images/logo_square.png" >
2017-01-31 07:21:15 +00:00
2018-01-23 22:16:25 +00:00
< title > safe.fiery.me – A small safe worth protecting.< / title >
2018-01-24 15:31:23 +00:00
< link rel = "stylesheet" type = "text/css" href = "libs/bulma/bulma.min.css" >
< link rel = "stylesheet" type = "text/css" href = "libs/sweetalert/sweetalert.min.css" >
< link rel = "stylesheet" type = "text/css" href = "css/style.css" >
< script type = "text/javascript" src = "libs/sweetalert/sweetalert.min.js" > < / script >
< script type = "text/javascript" src = "libs/dropzone/dropzone.min.js" > < / script >
< script type = "text/javascript" src = "libs/axios/axios.min.js" > < / script >
< script type = "text/javascript" src = "js/home.js" > < / script >
2018-01-23 22:16:25 +00:00
< / head >
2017-01-15 01:36:24 +00:00
2018-01-23 22:16:25 +00:00
< body >
< section class = "hero is-fullheight has-text-centered" id = "home" >
< div class = "hero-body" >
< div class = "container" >
< p id = "b" >
2018-01-24 15:31:23 +00:00
< img class = "logo" src = "images/logo_smol.png" >
2018-01-23 22:16:25 +00:00
< / p >
< h1 class = "title" > safe.fiery.me< / h1 >
< h2 class = "subtitle" > A < strong > modern< / strong > self-hosted file upload service< / h2 >
2017-01-15 01:36:24 +00:00
2018-01-23 22:16:25 +00:00
< h3 class = "subtitle" id = "maxFileSize" > < / h3 >
< div class = "columns" >
< div class = "column is-hidden-mobile" > < / div >
< div class = "column" id = "uploadContainer" >
2018-01-24 15:31:23 +00:00
< a id = "loginToUpload" href = "auth" class = "button is-danger" > Loading… < / a >
2018-01-23 22:16:25 +00:00
< div class = "field" id = "albumDiv" style = "display: none" >
< p class = "control select-wrapper" >
< span class = "select" >
< select id = "albumSelect" >
< option value = "" > Upload to album< / option >
< / select >
< / span >
< / p >
< / div >
< / div >
< div class = "column is-hidden-mobile" > < / div >
< / div >
2017-01-15 01:36:24 +00:00
2018-01-23 22:16:25 +00:00
< div id = "uploads" >
< div id = "template" class = "columns" >
< div class = "column is-hidden-mobile" > < / div >
< div class = "column" >
< progress class = "progress is-small is-danger" value = "0" max = "100" data-dz-uploadprogress > < / progress >
< p data-dz-errormessage > < / p >
< p class = "link" > < / p >
< / div >
< div class = "column is-hidden-mobile" > < / div >
< / div >
< / div >
2017-01-15 01:36:24 +00:00
2018-01-24 15:31:23 +00:00
< h3 class = "subtitle" > < a href = "auth" id = "loginLinkText" > < / a > < / h3 >
2018-01-23 22:16:25 +00:00
< h3 id = "links" >
2018-01-24 17:25:12 +00:00
< a href = "https://fiery.me" class = "is-danger" > Home< / a > < span > |< / span > < a href = "https://blog.fiery.me" class = "is-danger" > Blog< / a > < span > |< / span > < a id = "ShareX" href = "https://safe.fiery.me/sharex.txt" > ShareX< / a > < span > |< / span > < a href = "faq" class = "is-danger" > FAQ< / a > < span > |< / span > < a href = "auth" class = "is-danger" > Dashboard< / a > < span > |< / span > < a href = "https://github.com/BobbyWibowo/lolisafe" target = "_blank" class = "is-danger" > View on GitHub< / a >
2018-01-23 22:16:25 +00:00
< / h3 >
2017-01-15 01:36:24 +00:00
2018-01-23 22:16:25 +00:00
< / div >
< / div >
< / section >
2017-10-04 00:12:46 +00:00
2018-01-23 22:16:25 +00:00
< / body >
2017-01-31 11:31:07 +00:00
< / html >