2017-01-15 02:36:24 +01:00
<!DOCTYPE html>
< html >
< head >
< title > loli-safe - A self hosted upload service< / title >
< link rel = "stylesheet" type = "text/css" href = "https://cdnjs.cloudflare.com/ajax/libs/bulma/0.3.0/css/bulma.min.css" >
2017-01-18 06:40:14 +01:00
< link rel = "stylesheet" type = "text/css" href = "https://cdnjs.cloudflare.com/ajax/libs/sweetalert/1.1.3/sweetalert.min.css" >
2017-01-15 02:36:24 +01:00
< link rel = "stylesheet" type = "text/css" href = "/css/style.css" >
2017-01-18 06:40:14 +01:00
< script type = "text/javascript" src = "https://cdnjs.cloudflare.com/ajax/libs/sweetalert/1.1.3/sweetalert.min.js" > < / script >
2017-01-15 02:36:24 +01:00
< script type = "text/javascript" src = "https://cdnjs.cloudflare.com/ajax/libs/dropzone/4.3.0/min/dropzone.min.js" > < / script >
2017-01-19 06:37:35 +01:00
< script type = "text/javascript" src = "https://cdnjs.cloudflare.com/ajax/libs/axios/0.15.3/axios.min.js" > < / script >
2017-01-15 02:36:24 +01:00
< script type = "text/javascript" src = "/js/upload.js" > < / script >
< / head >
< body >
2017-01-17 04:37:54 +01:00
< section class = "hero is-fullheight has-text-centered" id = "home" >
2017-01-15 02:36:24 +01:00
< div class = "hero-body" >
< div class = "container" >
< p id = "b" >
2017-01-18 06:40:14 +01:00
< img class = 'logo' src = "/images/logo_smol.png" >
2017-01-15 02:36:24 +01:00
< / p >
2017-01-18 00:02:32 +01:00
< h1 class = "title" > loli-safe< / h1 >
< h2 class = "subtitle" > A < strong > modern< / strong > self-hosted file upload service< / h2 >
2017-01-15 02:36:24 +01:00
2017-01-18 00:02:32 +01:00
< h3 class = "subtitle" id = "maxFileSize" > < / h2 >
2017-01-15 02:36:24 +01:00
< div class = "columns" >
2017-01-17 21:12:58 +01:00
< div class = "column is-hidden-mobile" > < / div >
2017-01-15 02:36:24 +01:00
< div class = "column" id = 'uploadContainer' >
< p id = 'tokenContainer' class = "control has-addons has-addons-centered" >
< input id = 'token' class = "input is-danger" type = "text" placeholder = "Your upload token" >
< a id = 'tokenSubmit' class = "button is-danger" > Check< / a >
< / p >
< / div >
2017-01-17 21:12:58 +01:00
< div class = "column is-hidden-mobile" > < / div >
2017-01-15 02:36:24 +01:00
< / div >
< div id = "uploads" >
< div id = "template" class = "columns" >
2017-01-19 02:08:59 +01:00
< div class = "column is-hidden-mobile" > < / div >
2017-01-15 02:36:24 +01:00
< div class = "column" >
2017-01-19 02:08:59 +01:00
< progress class = "progress is-small is-danger" value = "0" max = "100" data-dz-uploadprogress > < / progress >
2017-01-15 02:36:24 +01:00
< p data-dz-errormessage > < / p >
< p class = "link" > < / p >
< / div >
2017-01-19 02:08:59 +01:00
< div class = "column is-hidden-mobile" > < / div >
2017-01-15 02:36:24 +01:00
< / div >
< / div >
2017-01-18 06:40:14 +01:00
< h3 id = "links" >
< a href = "https://github.com/kanadeko/loli-safe" target = "_blank" class = "is-danger" > View on Github< / a > < span > |< / span > < a href = "https://chrome.google.com/webstore/detail/loli-safe-uploader/enkkmplljfjppcdaancckgilmgoiofnj/related" target = "_blank" class = "is-danger" > Chrome extension< / a > < span > |< / span > < a href = "/panel" target = "_blank" class = "is-danger" > Dashboard< / a >
< / h3 >
2017-01-15 02:36:24 +01:00
< / div >
< / div >
< / section >
< / body >
< / html >