diff options
author | David Vazgenovich Shakaryan <dvshakaryan@gmail.com> | 2014-02-28 13:47:09 -0800 |
---|---|---|
committer | David Vazgenovich Shakaryan <dvshakaryan@gmail.com> | 2014-02-28 13:47:09 -0800 |
commit | 1522c50e3ea420281bcc33b2bed7b4f297a4ba96 (patch) | |
tree | 5ee0bb7b26a666883f2b83ec88f489623d63231e /options.html | |
parent | 493fcd8f5cee5a5ed7ebee4c4b94594465da09d5 (diff) | |
download | tempo-1522c50e3ea420281bcc33b2bed7b4f297a4ba96.tar.gz tempo-1522c50e3ea420281bcc33b2bed7b4f297a4ba96.tar.xz |
Improve timeformat code.
Diffstat (limited to 'options.html')
-rw-r--r-- | options.html | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/options.html b/options.html index 148d247..93b1cd6 100644 --- a/options.html +++ b/options.html @@ -11,16 +11,15 @@ <body> <div id="container"> <h1>Options</h1> - <p>Time format: - <select id="timeformat"> - <option value="12">12-hour</option> - <option value="24">24-hour</option> - </select> - </p> - <p id="status"> </p> - <p id="button"> + <div class="section"> + <p>Time format:</p> + <p class="option"><input type="radio" name="timeformat" id="t12" /><label for="t12"> 12-hour</label></p> + <p class="option"><input type="radio" name="timeformat" id="t24" /><label for="t24"> 24-hour</label></p> + </div> + <div id="button"> <button id="save">Save</button> - </p> + </div> + <p id="status"> </p> </div> </body> </html> |