diff options
author | FChannel <> | 2021-07-03 18:39:34 -0700 |
---|---|---|
committer | FChannel <> | 2021-07-03 18:39:34 -0700 |
commit | cf86acee94652ac7cd8e8f313e6abf6c9901c398 (patch) | |
tree | e8e9d1157e2d64eb8d8f3baa1f8694bd3e7e108d /static/nadmin.html | |
parent | ab6edbbe8044d5a3c7d9456bd15e3a74af35111a (diff) |
add some styling to news pull request
Diffstat (limited to 'static/nadmin.html')
-rw-r--r-- | static/nadmin.html | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/static/nadmin.html b/static/nadmin.html index 877e1e5..88b92c9 100644 --- a/static/nadmin.html +++ b/static/nadmin.html @@ -17,21 +17,24 @@ <option value="False">False</option> </select> </form> - + <ul style="display: inline-block; padding: 0;"> + <li style="display: inline-block;"><a href="#following">Subscribed</a></li> + <!-- <li style="display: inline-block;"><a href="javascript:show('followers')">Followers</a></li> --> + <li style="display: inline-block;"><a href="#reported">Reported</a></li> + </ul> +</div> + +<div class="popup-box" style="margin-bottom: 25px; padding: 12px;"> <h3>Post News</h3> <form id="news" action="/{{ .Key }}/postnews" method="post" enctype="application/x-www-form-urlencoded"> <label>Title:</label><br> - <input type="text" name="title" placeholder="{{.Actor}} was created!" required><input type="submit" value="Post"><br> + <input type="text" name="title" placeholder="New Board" required><input type="submit" value="Post"><br> <label>Content:</label><br> <textarea name="summary" rows="8" cols="50"></textarea><br> </form> +</div> + - <ul style="display: inline-block; padding: 0;"> - <li style="display: inline-block;"><a href="#following">Subscribed</a></li> - <!-- <li style="display: inline-block;"><a href="javascript:show('followers')">Followers</a></li> --> - <li style="display: inline-block;"><a href="#reported">Reported</a></li> - </ul> -</div> <div id="following" class="popup-box" style="margin-bottom: 25px; padding: 12px;"> <h4 style="margin: 0; margin-bottom: 5px;">Subscribed</h4> |