You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.6 KiB
59 lines
1.6 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Morsel - {{ name }}</title>
|
|
<link rel="stylesheet" href="/static/morsel.css" />
|
|
<link rel="stylesheet" href="/static/theme.css" />
|
|
</head>
|
|
<body>
|
|
{% include "nav.html" %}
|
|
<div class="feed_panel panel">
|
|
<h2>Settings</h2>
|
|
<form action="/new/b" method="POST">
|
|
<table width="75%" style="border: 1px solid #4c4c4c; margin: auto;">
|
|
<tr>
|
|
<td width="25%">
|
|
Board Name
|
|
</td>
|
|
<td>
|
|
<input type="text" name="bname" value="newboard" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width="25%">Board Description</td>
|
|
<td>
|
|
<textarea name="bdesc">A new board on Morsel!</textarea>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width="25%">
|
|
Board Moderators
|
|
<p><small>This should be a comma separated list of usernames.</small></p>
|
|
</td>
|
|
<td>
|
|
<input type="text" name="bmods" value="{{name}}" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width="25%">
|
|
Private Board
|
|
<p><small>Only you and the moderators specified above will be able to see or use this board.</small></p>
|
|
</td>
|
|
<td>
|
|
<input type="checkbox" name="private" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td> </td>
|
|
<td>
|
|
<a href="/b" class="abtn red">Cancel</a>
|
|
<input type="submit" value="Create new board" />
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
</div>
|
|
{% include "nav.html" %}
|
|
</body>
|
|
</html>
|