diff options
author | neodarz <neodarz@neodarz.net> | 2019-08-28 12:21:29 +0200 |
---|---|---|
committer | neodarz <neodarz@neodarz.net> | 2019-08-28 12:21:29 +0200 |
commit | e1e025823c6e868e59cde9ecc8fa495ee45de7bc (patch) | |
tree | ae3450c92daec3b99059a569510a24d6ab6753a6 /install.html | |
parent | 03588331342e2a401ae4a8617f6225325d099fa7 (diff) | |
download | shaarli_ascii-e1e025823c6e868e59cde9ecc8fa495ee45de7bc.tar.xz shaarli_ascii-e1e025823c6e868e59cde9ecc8fa495ee45de7bc.zip |
Diffstat (limited to '')
-rw-r--r-- | install.html | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/install.html b/install.html index 164d453..f0e7040 100644 --- a/install.html +++ b/install.html @@ -1,5 +1,5 @@ <!DOCTYPE html> -<html> +<html{if="$language !== 'auto'"} lang="{$language}"{/if}> <head> {include="includes"} </head> @@ -68,6 +68,27 @@ <div class="pure-g"> <div class="pure-u-lg-{$ratioLabel} pure-u-1"> <div class="form-label"> + <label for="language"> + <span class="label-name">{'Language'|t}</span> + </label> + </div> + </div> + <div class="pure-u-lg-{$ratioInput} pure-u-1"> + <div class="form-input"> + <select name="language" id="language" class="align"> + {loop="$languages"} + <option value="{$key}"> + {$value} + </option> + {/loop} + </select> + </div> + </div> + </div> + + <div class="pure-g"> + <div class="pure-u-lg-{$ratioLabel} pure-u-1"> + <div class="form-label"> <label> <span class="label-name">{'Timezone'|t}</span><br> <span class="label-desc">{'Continent'|t} · {'City'|t}</span> |