blob: 6912216ef6d9ce3ca7c409806c7b992d95969584 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!DOCTYPE html>
<html>
<head>
<title>Create Blog</title>
</head>
<body>
<h1>Create Blog</h1>
<form method="POST" action="/blogs">
<label>Title:</label><br>
<input type="text" name="title"><br>
<label>Content:</label><br>
<textarea name="content"></textarea><br>
<input type="submit" value="Create">
</form>
</body>
</html>
|