-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjson_create_blog.html
137 lines (123 loc) · 4.3 KB
/
json_create_blog.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
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://kit.fontawesome.com/aa4811ab5f.js" crossorigin="anonymous"></script>
<link rel="stylesheet" type="text/css" href="css/header.css" />
<link rel="stylesheet" type="text/css" href="css/logo_animation.css" />
<link rel="stylesheet" type="text/css" href="css/common.css" />
<link rel="stylesheet" type="text/css" href="css/logo_animation.css" />
<link rel="stylesheet" type="text/css" href="css/add_article.css" />
<title>Create Blog</title>
</head>
<body>
<header id="menu_header">
<div class="logo_animation">
<a href="index.html">
<h2>BERTIN</h2>
<h2>BERTIN</h2>
</a>
</div>
<div class="nav-bar">
<ul class="menu">
<li><a class="active" id="menu001" href="index.html">Home</a></li>
<li><a href="#ABOUT" id="menu002">About</a></li>
<li><a href="#SKILLS" id="menu003">Skills</a></li>
<li><a href="#PORTOFOLIO" id="menu004"> My Work</a></li>
<li><a href="#BLOG" id="menu005"> Blog</a></li>
<li><a href="#CONTACTS" id="menu006">Contacts</a></li>
</ul>
<div class="image-header">
<img
src="images/me3.jpg"
onclick="imageClick()"
class="dropclick"
alt="profile picture"
/>
<div id="myprofile" class="dropdown-content">
<ul class="profile-content1">
<li><a href="">Photo Gallery</a></li>
</ul>
<ul class="profile-content2">
<a href="mailto:[email protected]"
><li><i class="fa-solid fa-envelope"></i></li
></a>
<a href="teleto: +250786949188"
><li><i class="fa-solid fa-phone"></i></li
></a>
<a href="https://linkedin.com/in/ndahayo-s-bertin" target="_blank"
><li><i class="fa-brands fa-linkedin-in"></i></li
></a>
<a href="https://twitter.com/ndahayo_s" target="_blank"
><li><i class="fa-brands fa-twitter"></i></li>
</a>
</ul>
</div>
</div>
</div>
<div id="menu_scrolling">
<i class="fa-solid fa-bars" onclick="openNav(); imageClick()"></i>
</div>
</header>
<div class="aa_container"></div>
<h1>Create a New Blog</h1>
<div class="aa_container_001">
<form id="create_blog_form" method="post">
<div class="aa_section001">
<div class="label_section">
<label for="title">Blog Title: </label>
</div>
<input type="text" name="title" required placeholder="Blog title">
</div>
<div class="aa_section001">
<div class="label_section">
<label for="category">Blog Category: </label>
</div>
<select name="category">
<option value="Programming">Programming</option>
<option value="Life Style">Life Style</option>
<option value="Sport">Sport</option>
<option value="News">News</option>
<option value="Technology">Technology</option>
<option value="Business">Business</option>
</select>
</div>
<div class="aa_section001">
<div class="label_section">
<label for="content">Article content: </label>
</div>
<textarea
class="cs_message"
id="cs_message"
name="body"
rows="20"
cols="100"
placeholder="Enter Blog Content Here"
required="required"
></textarea>
</div>
<!-- Image Uploded will be shown here-->
<div class="image_uploaded_section">
<div class="aa_section001">
<div class="label_section">
<label for="upload">Upload Images: </label>
</div>
<div>
<input type="file" name="file" id="file-selector" accept=".jpg, .jpeg, .png" onChange="preview_2(this);"/>
<div class="image" id="output">
<img id="imagenFondo">
</div>
<p id="status"></p>
</div>
</div>
</div>
<button type="submit">Publish<i class="fa-solid fa-circle-plus"></i></button>
</form action="" method="post" id="create_blog_form">
</div>
<p class="last_p">
Back To Admin Portal <a href="dashboard.html"> Click here. ➡</a>
</p>
</body>
<script src="/script/json_create.js"></script>
</body>
</html>