diff options
author | Jordan <me@jordan.im> | 2021-03-06 15:53:57 -0700 |
---|---|---|
committer | Jordan <me@jordan.im> | 2021-03-06 15:53:57 -0700 |
commit | 4995d7225bde030e4dc61f2f3bd2e66945cc464d (patch) | |
tree | 0f005c9227258b3b1926af087a0f6a831ddccc56 | |
parent | 820ee67b0d5f1537b400bc420906b8d326093deb (diff) | |
download | crane-4995d7225bde030e4dc61f2f3bd2e66945cc464d.tar.gz crane-4995d7225bde030e4dc61f2f3bd2e66945cc464d.zip |
btn -> sel
-rw-r--r-- | templates/admin-edit.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/admin-edit.html b/templates/admin-edit.html index a4cf2c7..4192af0 100644 --- a/templates/admin-edit.html +++ b/templates/admin-edit.html @@ -8,12 +8,12 @@ <td class='inpt'> <form method='post' action='/admin/edit/'> <input type="text" id="rename-category" name="rename-to" placeholder="Mathematics"> - <select class="btn" name="rename-category" id="category"> + <select class="sel" name="rename-category" id="category"> {{ range $category, $papers := .Papers }} <option value="{{ $category }}">{{ $category }}</option> {{ end }} </select> - <input class='btn' type="submit" value="Rename Category"> + <input class="btn" type="submit" value="Rename Category"> </form> </td> {{ end }} @@ -31,7 +31,7 @@ {{ if gt $categoryCount 0 }} <form method='post' action='/admin/edit/'> <div class="action"> - <select class="btn" name="action" id="Action"> + <select class="sel" name="action" id="Action"> <optgroup label="Action"> <option value="delete">Delete</option> </optgroup> @@ -41,7 +41,7 @@ {{ end }} </optgroup> </select> - <input class='btn' type="submit" value="Save" /> + <input class="btn" type="submit" value="Save" /> </div> <div class='papers nowrap list'> {{ range $category, $papers := .Papers }} |