diff --git a/contrib/static/newboard.js b/contrib/static/newboard.js new file mode 100644 index 0000000..8cf96f7 --- /dev/null +++ b/contrib/static/newboard.js @@ -0,0 +1,6 @@ +function createBoard() { + var form = document.getElementById("postform"); + var e = document.getElementById("boardname"); + form.action = form.action + e.value; + form.submit(); +} diff --git a/contrib/static/site.css b/contrib/static/site.css index 12177ef..ac8e45c 100644 --- a/contrib/static/site.css +++ b/contrib/static/site.css @@ -123,10 +123,6 @@ html { color: #ededed; background: #262230; height: 100%; - background-image: url('/static/fieri.png'); - background-attachment: fixed; - background-position: 100% 0%; - background-repeat: no-repeat; font-family: arial,helvetica,sans-serif; font-size: 10pt; margin: 0 4px; diff --git a/contrib/templates/default/newboard.mustache b/contrib/templates/default/newboard.mustache new file mode 100644 index 0000000..8652cf4 --- /dev/null +++ b/contrib/templates/default/newboard.mustache @@ -0,0 +1,55 @@ + + + create new board + + + + +

make your first post

+
+
+
+
+ + + + + + + + + + + + + + + + + + + +
+ Board Name + + + +
+ Comment + + +
+ Captcha + + captcha +
+ Solution + + +
+
+
+
+ + \ No newline at end of file