diff options
| author | Onestay <[email protected]> | 2017-04-23 14:09:44 +0200 |
|---|---|---|
| committer | Onestay <[email protected]> | 2017-04-23 14:09:44 +0200 |
| commit | 81f17078351926ed37041bd43d23bea8a79259e1 (patch) | |
| tree | 15c5bc612e647134ebce71923a8913fa40992034 /pages | |
| parent | Made it so user doesn't need to specify blockedExtensions. (diff) | |
| download | host.fuwn.me-81f17078351926ed37041bd43d23bea8a79259e1.tar.xz host.fuwn.me-81f17078351926ed37041bd43d23bea8a79259e1.zip | |
only display album select when user is logged in
It still needs additional styling and stuff
Diffstat (limited to 'pages')
| -rw-r--r-- | pages/home.html | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/pages/home.html b/pages/home.html index 7338c57..14d1610 100644 --- a/pages/home.html +++ b/pages/home.html @@ -45,16 +45,27 @@ <div class="hero-body"> <div class="container"> <p id="b"> - <img class='logo' src="/images/logo_smol.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> - <h3 class="subtitle" id="maxFileSize"></h2> + <h3 class="subtitle" id="maxFileSize"></h3> <div class="columns"> <div class="column is-hidden-mobile"></div> - <div class="column" id='uploadContainer'> + <div class="column" id="uploadContainer"> <a id="loginToUpload" href="/auth" class="button is-danger">Running in private mode. Log in to upload.</a> + <div class="field" id="albumDiv" style="display: none"> + <label class="label">Album</label> + <p class="control"> + <span class="select"> + <select> + <option>Album 1</option> + <option>Album 2</option> + </select> + </span> + </p> + </div> </div> <div class="column is-hidden-mobile"></div> </div> |