Post creation

This commit is contained in:
Bat
2018-04-23 15:25:39 +01:00
parent 268607da0e
commit e506cd21b7
6 changed files with 92 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>New post</title>
</head>
<body>
<h1>Create a post</h1>
<form method="post">
<label for="title">Title</label>
<input name="title">
<label for="content">Content</label>
<textarea name="content"></textarea>
<label for="license">License</label>
<input name="license">
<input type="submit" value="Publish"/>
</form>
</body>
</html>