<!DOCTYPE html>
<html>
<head>
<title>Blog Post Form</title>
</head>
<body>
<form method="POST" action="submit_post.php">
<label for="title">Title:</label>
<input type="text" id="title" name="title" required>
<br>
<label for="content">Content:</label>
<textarea id="content" name="content" required></textarea>
<br>
<input type="submit" value="Submit">
</form>
</body>
</html>
No comments:
Post a Comment