fixed index.html.template

This commit is contained in:
sose 2019-10-16 22:45:21 -07:00
parent 0e22eb153d
commit 8d08de001b
1 changed files with 38 additions and 28 deletions

View File

@ -1,34 +1,44 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<link rel="stylesheet" type="text/css" href="main.css"/>
<html>
<head>
<title>
/board/ - a board
</title>
</head>
<head>
<title>
/board/ - a board
</title>
</head>
<body>
<p style="text-align:center;font-size: 30px; margin: 0px;">
/board/ - a board
</p>
<p style="text-align:center;font-size: 14px; margin: 0px;">
a description for the board
</p>
<br>
<form>
Name: <br>
<input type="text" name="username"> <br>
Post title: <br>
<input type="text" name="title"> <br>
Content: <br>
<input type="text" name="content"> <br>
<input type="submit" value="Submit"> <br>
</form>
<br>
<div class="posts">
<!--BEGIN POSTS-->
<!--END POSTS-->
</div>
<body>
<p style="text-align:center;font-size: 30px; margin: 0px;">
/board/ - a board
</p>
<p style="text-align:center;font-size: 14px; margin: 0px;">
description
</p>
<br>
<form enctype="multipart/form-data" action="http://127.0.0.1:7070" method="post" target="_blank">
<fieldset>
Post to (shortname of board if oppost, or id of post if reply):
<br>
<input type="text" name="post_to" value="test"><br>
<br>
Name:<br>
<input type="text" name="name" value="Anonymous"><br>
Title:<br>
<input type="text" name="title" value=""><br>
Text:<br>
<textarea name="content">Text for the post</textarea><br>
Image:<br>
<input type="file" name="fileupload" value="fileupload">
<br>
<br>
<input type="submit" value="Submit">
</fieldset>
</form>
<br>
<div class="posts">
<!--BEGIN POSTS-->
<!--END POSTS-->
</div>
</body>
</body>
</html>