diff options
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> |