diff options
author | FChannel <> | 2021-07-01 09:35:31 -0700 |
---|---|---|
committer | FChannel <> | 2021-07-01 09:35:31 -0700 |
commit | dbe79ecbb5bb0645093780380cc241f6cd8d1a20 (patch) | |
tree | 19adc8e2d82fdcca85a494b1635a1ea6523e9983 | |
parent | feafbc005cade181f274880492d2f7874f8cb834 (diff) |
fixed css to align post form
-rw-r--r-- | static/faq.html | 2 | ||||
-rw-r--r-- | static/top.html | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/static/faq.html b/static/faq.html index 00b8342..9851f19 100644 --- a/static/faq.html +++ b/static/faq.html @@ -37,7 +37,7 @@ <p>coming soon(tm).</p> <h4>Server Version</h4> - <p>v0.0.5</p> + <p>v0.0.5a</p> </div> <div style="width: 500px; margin:0 auto; margin-top: 50px; text-align: center;"> <a href="/">[Home]</a><a href="/static/rules.html">[Rules]</a><a href="/static/faq.html">[FAQ]</a> diff --git a/static/top.html b/static/top.html index ee81be1..26c2fcc 100644 --- a/static/top.html +++ b/static/top.html @@ -9,14 +9,14 @@ <h3 id="newpostbtn" state="0" style="text-align: center; margin-top: 80px;"><a href="javascript:newpost()">[Start a New Thread]</a></h3> {{ end }} <div id="newpost" style="display: none;"> - <form id="new-post" action="/post" method="post" enctype="multipart/form-data"> + <form id="new-post" action="/post" method="post" enctype="multipart/form-data" style="margin-left: 180px;"> <label for="name">Name:</label><br> <input type="text" id="name" name="name" placeholder="Anonymous" maxlength="100"><br> <label for="options">Options:</label><br> - <input type="text" id="options" name="options" maxlength="100">{{ if .Board.InReplyTo }}<input type="submit" value="Post">{{ end }}<br> + <input type="text" id="options" name="options" maxlength="100" style="margin-right:10px">{{ if .Board.InReplyTo }}<input type="submit" value="Post">{{ end }}<br> {{ if eq .Board.InReplyTo "" }} <label for="subject">Subject:</label><br> - <input type="text" id="subject" name="subject" maxlength="100"><input type="submit" value="Post"><br> + <input type="text" id="subject" name="subject" maxlength="100" style="margin-right:10px"><input type="submit" value="Post"><br> {{ end }} <label for="comment">Comment:</label><br> <textarea rows="10" cols="50" id="comment" name="comment" maxlength="2000"></textarea><br> |