Split project into multiple files, added a way to post to the blog and rewrote README file

This commit is contained in:
2013-07-25 06:12:02 +02:00
parent b14dc108c3
commit 36751401ca
6 changed files with 77 additions and 29 deletions

16
user/newpost.html Normal file
View File

@@ -0,0 +1,16 @@
<html><title>Create a new post</title>
<body>
<form action="createpost.php" method="post">
Date: (YYYY-MM-DD) <input type="date" name="date">
<br />
Title: <input type="text" name="title">
<br />
Text: <br />
<textarea cols="50" rows="10" name="post"></textarea>
<br />
<input type="submit">
</form>
</body>
</html>