blog/templates/create_blog.html
2023-09-18 18:40:19 -04:00

28 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<link href="http://cht.venith.net/homebrew-blog/assets/css/blogcss.css" rel="stylesheet" type="text/css" />
<link rel="shortcut icon" href="http://cht.venith.net/homebrew-blog/assets/images/icon_browser/homebrew32x32.png">
<link href="http://cht.venith.net/homebrew-blog/manifest.json" rel="manifest">
<title>Create Blog - Homeblog</title>
</head>
<body>
<header>
<h1>Create a New Blog</h1>
</header>
<div class="blog-content">
<form method="POST" action="/create_blog">
<label for="title">Title:</label>
<input type="text" id="title" name="title" required><br><br>
<label for="author">Author Name:</label>
<input type="text" id="author" name="author" required><br><br>
<label for="content">Content:</label><br>
<textarea id="content" name="content" rows="5" required></textarea><br><br>
<button type="submit">Create Blog</button>
</form>
</div>
</body>
</html>