-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathblogWrite.php
98 lines (86 loc) · 3.05 KB
/
blogWrite.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<?php
session_start();
?>
<!DOCTYPE HTML>
<html>
<head>
<title>AgroCulture : Write a Blog</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="../bootstrap\css\bootstrap.min.css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="../bootstrap\js\bootstrap.min.js"></script>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="description" content="" />
<meta name="keywords" content="" />
<!--[if lte IE 8]><script src="css/ie/html5shiv.js"></script><![endif]-->
<script src="js/jquery.min.js"></script>
<script src="js/skel.min.js"></script>
<script src="js/skel-layers.min.js"></script>
<script src="js/init.js"></script>
<link rel="stylesheet" href="css/skel.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/style-xlarge.css" />
<script src="https://cdn.ckeditor.com/4.8.0/full/ckeditor.js"></script>
</head>
<body class="subpage">
<?php
require 'menu.php';
?>
<!-- <div class="btn-group-lg btn-group-justified">
<div class="row">
<div class="4u$ 12u$(small)">
<a href="#" class="button alt fit">Blogs & Poetry</a>
</div>
<div class="4u$ 12u$(small)">
<a href="#" class="button alt fit">Photography</a>
</div>
<div class="4u$ 12u$(small)">
<a href="#" class="button alt fit">Paintings and Sketches</a>
</div>
</div>
</div>
<br> -->
<form method="post" action="Blog/blogSubmit.php">
<section id="main" class="wrapper">
<div class="inner">
<div class="container" style="width: 70%">
<div class="row uniform">
<div class="9u 12u$(small)">
</div>
<div class="3u 12u$(small)">
<a href="blogView.php" class="button special fit">View Blogs</a>
</div>
</div>
<br />
<div class="box">
<div class="row uniform">
<div class="12u$">
<input type="text" name="blogTitle" id="blogTitle" value="" placeholder="Blog Title" required/>
</div>
<div class="12u$">
<textarea name="blogContent" id="blogContent" rows="12" placeholder="Blog Content"></textarea>
</div>
<br>
<div class="12u$">
<center>
<input type="submit" name="submit" class="button special" value="SUBMIT"/>
</center>
</div>
</div>
</div>
</div>
</section>
</form>
<script>
CKEDITOR.replace( 'blogContent' );
</script>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.scrolly.min.js"></script>
<script src="assets/js/jquery.scrollex.min.js"></script>
<script src="assets/js/skel.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>