-
Notifications
You must be signed in to change notification settings - Fork 2
/
create.php
34 lines (32 loc) · 1.47 KB
/
create.php
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
29
30
31
32
33
34
<?php
include "logic.php"
?>
<!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">
<title>Document</title>
<link rel="stylesheet" href="style.css">
<!-- bootstrap css -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- my css -->
<link rel="stylesheet" href="css/style.css">
</head>
<body class="bg-dark">
<div class="container mt-5">
<form method="POST">
<label for="blog title" class="text-light border-left-0 customText">Blog Title</label>
<input type="text" placeholder = "Blog Title" class="form-control my-3 bg-secondary text-light border-0">
<label for="content" class="text-light customText">Content</label>
<textarea cols="20" rows="5" class="form-control my-3 bg-secondary text-light border-0"></textarea>
<button class="btn btn-outline-warning">Add Post</button>
</form>
</div>
<!-- bootstrap js -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"></script>
</body>
</html>