-
Notifications
You must be signed in to change notification settings - Fork 0
/
createnew.html
405 lines (325 loc) · 12.8 KB
/
createnew.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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<title>IJBRSS</title>
<link rel="favicon" href="assets/images/favicon.png">
<link rel="stylesheet" media="screen" href="http://fonts.googleapis.com/css?family=Open+Sans:300,400,700">
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/font-awesome.min.css">
<!-- Custom styles for our template -->
<link rel="stylesheet" href="assets/css/bootstrap-theme.css" media="screen" >
<link rel="stylesheet" href="assets/css/style.css">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="assets/js/html5shiv.js"></script>
<script src="assets/js/respond.min.js"></script>
<![endif]-->
<style>
.logoa{
width: 100px;
height: 70px;
}
th{
width: 30%;
}
#myModal{
background:url();
background-repeat: no-repeat;
}
</style>
<script>
let authorCount = 1;
function addAuthor() {
if (authorCount < 8) {
authorCount++;
const authorsDiv = document.getElementById('authors');
const newAuthorDiv = document.createElement('div');
newAuthorDiv.className = 'author-form';
newAuthorDiv.innerHTML = `
<label>Author ${authorCount} Name: <input type="text" name="author${authorCount}Name" required></label>
<label>Email: <input type="email" name="author${authorCount}Email" required></label>
<label>Affiliation: <input type="text" name="author${authorCount}Affiliation" required></label>
`;
authorsDiv.appendChild(newAuthorDiv);
} else {
alert('Maximum 8 authors can be added.');
}
}
function showModal() {
var modal = document.getElementById("myModal");
var span = document.getElementsByClassName("close")[0];
modal.style.display = "block";
span.onclick = function() {
modal.style.display = "none";
}
window.onclick = function(event) {
if (event.target == modal) {
modal.style.display = "none";
}
}
}
function validateForm() {
const authorForms = document.querySelectorAll('.author-form');
let allValid = true;
authorForms.forEach(form => {
const inputs = form.querySelectorAll('input');
inputs.forEach(input => {
if (!input.value) {
allValid = false;
}
});
});
if (!allValid) {
alert('Please fill out all required fields.');
} else {
showModal();
}
}
document.addEventListener('DOMContentLoaded', function() {
document.getElementById('mainsubmit').addEventListener('click', function() {
validateForm();
});
});
</script>
</head>
<body>
<!-- Fixed navbar -->
<div class="navbar navbar-inverse navbar-fixed-top headroom" >
<div class="container">
<div class="navbar-header">
<!-- Button for smallest screens -->
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse"><span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button>
<a class="navbar-brand" href="index.html"><img src="assets/images/logo.png" alt="" id="mainlogo"></a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav pull-right">
<li><a href="index.html">Home</a></li>
<li><a href="callforpapers.html" class="active">Call For Papers</a></li><li><a href="researchpaper.html">Research Area</a></li><li><a href="virtuallib.html">Virtual Library</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Join Us <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="sidebar-right.html">Apply As Reviewer</a></li>
<li><a href="#">Apply As A Board Member</a></li>
<li><a href="#">Board Members </a></li>
<li><a href="#">Editorial Board</a></li>
</ul>
</li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
<!-- /.navbar -->
<header id="head" class="secondary"></header>
<!-- container -->
<div class="container">
<ol class="breadcrumb">
<li><a href="index.html">Reviewer Portal</a></li>
<li><a href="reviewerportal.html">Author Dahsboard</a></li>
<li><a href="index.html">Create New</a></li>
</ol>
<div class="row">
<!-- Article main content -->
<article class="col-sm-8 maincontent">
<header class="page-header">
<h1 class="page-title">Welcome </h1>
</header>
<!-- <h3>Call for Papers (CPF) October 2023</h3>
<p><img src="assets/images/imp3.png" alt="" class="img-rounded pull-right" width="300" > Call for papers (CPF) for the upcoming October 2023 issue of International Journal of Research and Innovation in Social Science (IJRISS). We cover areas related to Social Science journal, Arts & Humanities journal, law and culture journal, language journal, management journals and many more.
</p>
<p>Papers will publish in English.</p>
<p>Open Access Journal for the promotion of your research.</p>
<p>A global list of prestigious Editorial Board.</p>
<h3>Company Goals</h3>
-->
<div class="container table-responsive py-5">
<table class="table table-bordered table-hover">
<thead class="thead-dark">
<tr>
<th scope="col"> Create New Article </th>
</tr>
</thead>
<tbody>
<tr>
<td> <a href="submissions.html"> Title </a></td>
<td> <input type="text" name="" id=""> </td>
</tr>
</tr>
<thead class="thead-dark">
<tr>
<th scope="col"> Upload PDF </th>
</tr>
</thead>
<tr>
<th>
<br>
<br>
</th>
<td>
<center> <img src="https://www.iconpacks.net/icons/2/free-pdf-upload-icon-3389-thumb.png" alt="" width="150px" height="150px"> <input type="file" name="" id=""> </center>
</td>
</tr>
<thead class="thead-dark">
<tr>
<th scope="col"> Add Author Details </th>
</tr>
</thead>
<tr>
<th>
</th>
<td>
<form id="authors">
<div class="author-form">
<label>Author 1 Name: <input type="text" name="author1Name" required></label>
<label>Email: <input type="email" name="author1Email" required></label>
<label>Affiliation: <input type="text" name="author1Affiliation" required></label>
</div>
</form>
<button type="button" onclick="addAuthor()">Add Author</button>
</td>
</tr>
<tr>
<th>
Add Absract Details
</th>
<td>
<input type="text" width="500px">
</td>
</tr>
</tbody>
</table>
</div>
<br>
<div class="container table-responsive py-5">
<table class="table table-bordered table-hover">
<thead class="thead-dark">
<tr>
<th scope="col"> Review and Submit </th>
</tr>
</thead>
<tbody>
<tr>
<td> <a href="http://"> Instructions </a></td>
<td>You will need the following:
<br>
<br>
Title of journal you are submitting to<br>
Name, email address and institution for each author<br>
Name, email address and expertise description of your 4 experts (see author guidelines for details)<br>
Your article as a pdf file (if not possible, use Word format). Maximum file size is 8MB (high resolution images not required at this stage)<br>
<b>Don’t forget</b> that as your article will be peer reviewed, you need to remove the names, email addresses, affiliations and biographical notes of all the authors as well as any acknowledgements from the content of the article. You should still keep the title, abstract and the keywords.<br>
<br>
If this is not done, approval of your submission will be delayed.<br>
You can save your partly completed submission and finish it later - find it in Your draft submissions section above.<br>
If you want your article to be Open Access, you will be able to select this option after your article has been accepted for publication.
<br>
<br>
<input type="checkbox" name="" id=""> I accept that all the above filled information belongs to you <br>
<br>
<center>
<input type="button" id="mainsubmit" value="Submit">
</center>
</tr>
</tbody>
</table>
<div id="myModal" class="modal">
<div class="modal-content">
<span class="close">×</span>
<center> <img src="https://png.pngtree.com/png-vector/20191113/ourmid/pngtree-green-check-mark-icon-flat-style-png-image_1986021.jpg" alt="" srcset="" width="100px" height="100px"></center>
<center> <p>Your Article has been Successfully submitted</p> </center>
<center> <a href="reviewerportal.html"><button type="button"> Go back to Home </button></a></center>
</div>
</div>
</div>
</article>
<!-- /Article -->
<!-- Sidebar -->
<aside class="col-sm-4 sidebar sidebar-right">
<!-- <div class="panel">
<h4>Important Links</h4>
<ul class="list-unstyled list-spaces">
<li><a href="">Paper Submission</a><br><span class="small text-muted">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Animi, laborum.</span></li>
<li><a href="">Track Your Submission</a><br><span class="small text-muted">Consequuntur eius repellendus eos aliquid molestiae ea laborum ex quibusdam</span></li>
<li><a href="">Editorial Board</a><br><span class="small text-muted">Eveniet, consequuntur eius repellendus eos aliquid molestiae ea</span></li>
<li><a href="">Board Members</a><br><span class="small text-muted">Sed, mollitia earum debitis est itaque esse reiciendis amet cupiditate.</span></li>
<li><a href="">Virtual Library</a><br><span class="small text-muted">Voluptate minus illo tenetur sint ab in culpa cumque impedit quibusdam. Saepe, molestias quia.</span></li>
</ul>
</div> -->
</aside>
<!-- /Sidebar -->
</div>
</div> <!-- /container -->
<footer id="footer" class="top-space">
<div class="footer1">
<div class="container">
<div class="row">
<div class="col-md-5 panel">
<h3 class="panel-title">About IJBRSS</h3>
<div class="panel-body">
<p>IJBRSS (Internantional Journal of Business Research and Social Sciences ) is a prestigious scholarly publication at the forefront of business and technology research. With a commitment to rigorous peer review and open access, IJBRSS offers valuable insights, fostering collaboration among researchers, academics, practitioners, and policymakers to shape the future of these dynamic fields.</p>
</div>
</div>
<div class="col-md-4 panel contact">
<h3 class="panel-title">Contact Info</h4>
<div class="panel-body">
<p>IJBRSS publishes cutting-edge research at the intersection of business and technology.</p>
<ul>
<li><i class="fa fa-phone"></i>+91 88650 09495</li>
<li><a href="#"><i class="fa fa-envelope-o"></i> [email protected]</a></li>
<li><i class="fa fa-flag"></i>123 Smith Drive, Baltimore, MD 21212</li>
</ul>
</div>
</div>
<div class="col-md-3 panel">
<h3 class="panel-title">Follow me</h3>
<div class="panel-body">
<p class="follow-me-icons">
<a href=""><i class="fa fa-twitter fa-2"></i></a>
<a href=""><i class="fa fa-dribbble fa-2"></i></a>
<a href=""><i class="fa fa-github fa-2"></i></a>
<a href=""><i class="fa fa-facebook fa-2"></i></a>
<a href=""><i class="fa fa-youtube fa-2"></i></a>
<a href=""><i class="fa fa-pinterest fa-2"></i></a>
</p>
</div>
</div>
</div> <!-- /row of panels -->
</div>
</div>
<div class="footer2">
<div class="container">
<div class="row">
<div class="col-md-6 panel">
<div class="panel-body">
<p class="simplenav">
<a href="index.html">Home</a> |
<a href="callforpapers.html">Call For Papers</a> |
<a href="researchpaper.html">Research Area</a> |
<a href="virtuallib.html">Virtual Library</a> |
<a href="contact.html">Contact Us</a>
</p>
</div>
</div>
<div class="col-md-6 panel">
<div class="panel-body">
<p class="text-right">
Copyright © 2024. Made by <a href="https://devanshucodes.github.io/devanshu/" rel="develop">Devanshu Saxena</a>
</p>
</div>
</div>
</div> <!-- /row of panels -->
</div>
</div>
</footer>
<!-- JavaScript libs are placed at the end of the document so the pages load faster -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
<script src="assets/js/headroom.min.js"></script>
<script src="assets/js/jQuery.headroom.min.js"></script>
<script src="assets/js/custom.js"></script>
</body>
</html>