Basic blog creation

This commit is contained in:
Bat
2018-04-23 11:54:37 +01:00
parent 502c186f52
commit 9130f4d848
7 changed files with 88 additions and 1 deletions
+16
View File
@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>New blog</title>
</head>
<body>
<h1>Create a blog</h1>
<form method="post">
<label for="title">Title</label>
<input name="title">
<input type="submit" value="Create blog"/>
</form>
</body>
</html>