Rename create_blog.html to templates/create_blog.html
This commit is contained in:
parent
e5f3430961
commit
cceb73cb87
1 changed files with 0 additions and 0 deletions
33
templates/create_blog.html
Normal file
33
templates/create_blog.html
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
<!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>
|
||||
<footer class="taskbar">
|
||||
<button class="taskbar-button" id="info-button" title="Info Page"><a href='../../info.html'>ⓘ</a></button>
|
||||
<button class="taskbar-button" id="home-button" title="Home"><a href='../../index.html'>⌂</a></button>
|
||||
<button class="taskbar-button" id="settings-button" title="Settings"><a href='../../settings.html'>⚙</a></button>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue