diff options
| author | Pitu <[email protected]> | 2017-01-18 02:40:14 -0300 |
|---|---|---|
| committer | Pitu <[email protected]> | 2017-01-18 02:40:14 -0300 |
| commit | 84ff2241ba81fc6a1a2201074d30f971dad8a0de (patch) | |
| tree | 8ec712f118fc7e553f170640e3c86760bbd2a2ec /pages | |
| parent | Better static routes (diff) | |
| download | host.fuwn.me-84ff2241ba81fc6a1a2201074d30f971dad8a0de.tar.xz host.fuwn.me-84ff2241ba81fc6a1a2201074d30f971dad8a0de.zip | |
Shit ton of things on this update
Diffstat (limited to 'pages')
| -rw-r--r-- | pages/home.html | 12 | ||||
| -rw-r--r-- | pages/panel.html | 11 |
2 files changed, 13 insertions, 10 deletions
diff --git a/pages/home.html b/pages/home.html index 1ec947b..85e2493 100644 --- a/pages/home.html +++ b/pages/home.html @@ -3,7 +3,9 @@ <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"> + <link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/sweetalert/1.1.3/sweetalert.min.css"> <link rel="stylesheet" type="text/css" href="/css/style.css"> + <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/sweetalert/1.1.3/sweetalert.min.js"></script> <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/dropzone/4.3.0/min/dropzone.min.js"></script> <script type="text/javascript" src="/js/upload.js"></script> </head> @@ -13,7 +15,7 @@ <div class="hero-body"> <div class="container"> <p id="b"> - <img class='logo' src="/images/logo.png"> + <img class='logo' src="/images/logo_smol.png"> </p> <h1 class="title">loli-safe</h1> <h2 class="subtitle">A <strong>modern</strong> self-hosted file upload service</h2> @@ -32,10 +34,6 @@ <div class="column is-hidden-mobile"></div> </div> - <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> - <div id="uploads"> <div id="template" class="columns"> <div class="column"> @@ -51,6 +49,10 @@ </div> </div> </div> + + <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> </div> </div> diff --git a/pages/panel.html b/pages/panel.html index 8565264..3a4dbf5 100644 --- a/pages/panel.html +++ b/pages/panel.html @@ -3,12 +3,15 @@ <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"> + <link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/sweetalert/1.1.3/sweetalert.min.css"> <link rel="stylesheet" type="text/css" href="/css/style.css"> + <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/sweetalert/1.1.3/sweetalert.min.js"></script> <script type="text/javascript" src="/js/panel.js"></script> </head> <body> <section id='auth' class="hero is-light is-fullheight"> + <div class="hero-body"> <div class="container"> <h1 class="title"> @@ -22,6 +25,7 @@ </h2> </div> </div> + </section> <section id='dashboard' class="section"> @@ -42,11 +46,7 @@ <ul class="menu-list"> <li><a id='itemManageGallery'>Manage your albums</a></li> <li> - <ul id='galleryContainer'> - <li><a>Album 1</a></li> - <li><a>Album 2</a></li> - <li><a>Album 3</a></li> - </ul> + <ul id='albumsContainer'></ul> </li> </ul> <p class="menu-label">Administration</p> @@ -60,6 +60,7 @@ </div> </div> </div> + </section> </body> </html>
\ No newline at end of file |