The following files exists in this folder. Click to view.
newblog.php32 lines ASCII Unix (LF)
<?php
include("check_session.php");
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>New blog</title>
<link rel="stylesheet" href="/spectre/spectre-master/dist/spectre.css">
</head>
<body style="text-align: center;">
<h1>New blog</h1>
<form method="post" action="h_blog_insert.php">
<p>
<label for="name">Blog Name:</label>
</p>
<p>
<input type="text" id="name" name="name" required>
</p>
<p>
<label for="desc">Description (optional):</label>
</p>
<p>
<input type="text" id="desc" name="desc">
</p>
<input type="submit" class="btn btn-primary" value="Create New Blog">
</form>
</body>
</html>