-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreate.php
More file actions
28 lines (23 loc) · 961 Bytes
/
create.php
File metadata and controls
28 lines (23 loc) · 961 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php
include("logic.php");
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<title>Blog as Twitter Clone, using PHP & MySQL</title>
</head>
<body>
<!--CREATE Post-->
<div class="container mt-5">
<form method="POST">
<input type="text" placeholder="Blog Title" class="form-control my-3 bg-dark text-white text-center" name="title">
<textarea name="content" class="form-control my-3 bg-dark text-white" cols="30" rows="10"></textarea>
<button class="btn btn-dark" name="new_post">Add Post</button>
</form>
</div>
</body>
</html>