17 lines
338 B
HTML
17 lines
338 B
HTML
<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" value="Create post">
|
|
</form>
|
|
|
|
</body>
|
|
</html>
|