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"> <!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"/> <link rel="stylesheet" type="text/css" href="main.css"/>
<html> <html>
<head> <head>
<title> <title>
/board/ - a board /board/ - a board
</title> </title>
</head> </head>
<body> <body>
<p style="text-align:center;font-size: 30px; margin: 0px;"> <p style="text-align:center;font-size: 30px; margin: 0px;">
/board/ - a board /board/ - a board
</p> </p>
<p style="text-align:center;font-size: 14px; margin: 0px;"> <p style="text-align:center;font-size: 14px; margin: 0px;">
a description for the board description
</p> </p>
<br> <br>
<form> <form enctype="multipart/form-data" action="http://127.0.0.1:7070" method="post" target="_blank">
Name: <br> <fieldset>
<input type="text" name="username"> <br> Post to (shortname of board if oppost, or id of post if reply):
Post title: <br> <br>
<input type="text" name="title"> <br> <input type="text" name="post_to" value="test"><br>
Content: <br> <br>
<input type="text" name="content"> <br> Name:<br>
<input type="submit" value="Submit"> <br> <input type="text" name="name" value="Anonymous"><br>
</form> Title:<br>
<br> <input type="text" name="title" value=""><br>
<div class="posts"> Text:<br>
<!--BEGIN POSTS--> <textarea name="content">Text for the post</textarea><br>
<!--END POSTS--> Image:<br>
</div> <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> </html>