23 lines
542 B
Plaintext
23 lines
542 B
Plaintext
<!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>
|