Archived
1
0
This repository has been archived on 2023-08-12. You can view files and clone it, but cannot push or open issues or pull requests.
nntpchan/contrib/templates/default/newboard.mustache

56 lines
1.5 KiB
Plaintext
Raw Normal View History

2015-10-03 00:38:59 +05:00
<html>
<head>
<title>create new board</title>
<link rel="stylesheet" href="{{prefix}}static/site.css" />
2015-10-08 20:55:58 +05:00
<link rel="stylesheet" href="{{prefix}}static/user.css" />
2015-10-03 00:38:59 +05:00
<script type="text/javascript" src="{{prefix}}static/newboard.js">
</script>
</head>
<body>
<p>make your first post</p>
<hr />
2015-10-03 00:45:22 +05:00
<form action="{{prefix}}post/" enctype="multipart/form-data" name="post" method="post" id="postform" >
2015-10-03 00:38:59 +05:00
<div id="postform-outer">
<div id="postform-inner">
<table class="postform">
<tbody>
<tr>
<th>
Board Name
</th>
<td>
<input type="text" name="name" value="" id="boardname" />
<button onclick="createBoard()">Create Board</button>
</td>
</tr>
2015-10-03 00:46:52 +05:00
<tr>
<th>
Comment
</th>
<td>
<textarea id="postform_message" type="text" name="message" cols=40 rows=5></textarea>
</td>
</tr>
2015-10-03 00:38:59 +05:00
<tr>
<th>
Captcha
</th>
<td>
<img id="captcha_img" src="{{prefix}}captcha/img" alt="captcha" />
</td>
</tr>
<tr>
<th>
Solution
</th>
<td>
<input type="text" name="captcha" />
</td>
</tr>
</tbody>
</table>
</div>
</div>
</form>
</body>
</html>