-
Notifications
You must be signed in to change notification settings - Fork 6
/
write.html
71 lines (58 loc) · 1.87 KB
/
write.html
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
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<title>Blog</title>
<link rel="stylesheet" type="text/css" href="src/css/blog.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
<link rel="icon" href="favicon.ico">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css">
<link href="src/css/landing.css" rel="stylesheet">
<script type="text/javascript" src="ckeditor/ckeditor.js"></script>
</head>
<body>
<form method="POST" action="admin.php" enctype="multipart/form-data">
<!--Title-->
<div class="container-fluid form-group">
<div>
<br>
<input type="text" name="title" placeholder="Title" class="box" /><br><br>
</div>
<!--Text Editor-->
<div >
<div class="content">Share your Experience here
<textarea rows="50" cols="60" placeholder="Share your Experience here" name="content" id="content"></textarea>
<script type="text/javascript">
CKEDITOR.replace( 'content' );
</script>
</div>
<br>
</div>
<!--Author-->
<div>
<input type="text" name="author" placeholder="Author" class="box" /><br><br>
</div>
<!--Image-->
<div>
<input type="hidden" name="size" value="1000000">
<input type="file" name="image" placeholder="Add a suitable image" class="box" /><br><br>
</div>
<!--Publish Button-->
<div>
<button type="submit" class="publish" name="publish">Publish</button>
</div>
</div>
</form>
</body>
<footer>
<div class="container1">
<div class="footer-box">
<p style="text-align: center;">Copyright © 2018 TutOverflow</p>
<i class="fa fa-facebook"></i>
<i class="fa fa-twitter"></i>
<i class="fa fa-instagram"></i>
<i class="fa fa-github"></i>
<i class="fa fa-behance"></i>
</div>
</div>
</footer>
</html>