-
Notifications
You must be signed in to change notification settings - Fork 317
/
start_writing.html
800 lines (691 loc) · 29.3 KB
/
start_writing.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
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>WordWise - Start Writing</title>
<link rel="shortcut icon" type="image/x-icon" href="/images/favi.webp" />
<!--font awesome-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css" integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!--swiper slider css-->
<link
rel="stylesheet"
href="https://unpkg.com/swiper/swiper-bundle.min.css"
/>
<!--css-->
<!-- <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet"> -->
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="start_writing.css" />
<link rel="stylesheet" href="Scroll_and_progressbar.css" />
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
height: 100%;
margin: 0;
padding: 0;
overflow-x: hidden;
}
body {
display: flex;
flex-direction: column;
}
main {
flex: 1 0 auto;
}
footer {
flex-shrink: 0;
}
</style>
<!-- Script for Navbar Toggle -->
<script>
function toggleMenu() {
const menu = document.getElementById('nav-menu');
menu.classList.toggle('active');
}
</script>
</head>
<body>
<nav>
<div class="progress-container">
<div class="progress-bar" id="progress-bar"></div>
</div>
<!--header-->
<div class="layout-container" style="margin-bottom: 4rem;">
<header>
<div class="logo" >
<a href="index.html">
<h2>WordWise</h2>
</a>
</div>
<div class="hamburger" id="hamburger" onclick="toggleHamburgerMenu()">
<span></span>
<span></span>
<span></span>
</div>
<div class="nav-links1" id="navLinks">
<a href="index.html">Home</a>
<a href="blog.html">Leading Blog</a>
<a href="start_writing.html">Start Writing</a>
<a href="category.html">Categories</a>
<a href="contact_us.html">Contact Us</a>
<a href="give_feedback.html">Give Feedback</a>
</div>
<div class="dropdown">
<!-- Profile Icon -->
<a href="#" class="profile-icon" id="profileDropdown" onclick="toggleDropdown()">
<i class="fas fa-user-circle"></i>
</a>
<!-- Dropdown Menu -->
<ul class="dropdown-menu" id="dropdownMenu">
<li><a href="#login" onclick="openForm('login')">Login</a></li>
<li><a href="#signup" onclick="openForm('signup')">Signup</a></li>
</ul>
</div>
<!-- Login Form -->
<div class="form-popup" id="loginForm">
<form class="form-container" onsubmit="return validateLoginForm()" style="max-width: 400px; margin: auto;">
<span class="close-icon" onclick="closeForm('login')">×</span>
<h2 class="text-center">Login</h2>
<div class="form-group">
<label for="loginEmail"><b>Email</b></label>
<input type="email" class="form-control" id="loginEmail" placeholder="Enter Email" name="email" required>
</div>
<div class="form-group position-relative">
<label for="loginPsw"><b>Password</b></label>
<input type="password" class="form-control" id="loginPsw" placeholder="Enter Password" name="psw" required minlength="6">
<i class="bi bi-eye eye-icon" id="toggleLoginPassword" onclick="togglePasswordVisibility('loginPsw', 'toggleLoginPassword')"></i>
</div>
<div class="forgot">
<a href="javascript:void(0);" onclick="openForgotPassword()">Forgot Password?</a>
</div>
<button type="submit" class="btn btn-primary w-100 mb-3">LOGIN</button>
<!-- Google Sign-In Button -->
<button type="button" class="btn google-btn" onclick="handleGoogleLogin()">
<img src="./assets/google_icon.webp" alt="Google Logo" class="google-logo">
Sign in with Google
</button>
</form>
</div>
<!-- Signup Form -->
<div class="form-popup" id="signupForm">
<form class="form-container" onsubmit="return validateSignupForm()" style="max-width: 400px; margin: auto;">
<span class="close-icon" onclick="closeForm('signup')">×</span>
<h2 class="text-center">Signup</h2>
<div class="form-group">
<label for="name"><b>Full Name</b></label>
<input type="text" class="form-control" id="name" placeholder="Enter Full Name" name="name"
required pattern="[a-zA-Z ]+"
oninvalid="this.setCustomValidity('Numbers and Symbols are not allowed')"
oninput="this.setCustomValidity('')">
</div>
<div class="form-group">
<label for="signupEmail"><b>Email</b></label>
<input type="email" class="form-control" id="signupEmail" placeholder="Enter Email" name="email" required>
</div>
<div class="form-group position-relative">
<label for="signupPsw"><b>Password</b></label>
<input type="password" class="form-control" id="signupPsw" placeholder="Enter Password" name="psw" required minlength="6">
<i class="bi bi-eye eye-icon" id="toggleSignupPassword" onclick="togglePasswordVisibility('signupPsw', 'toggleSignupPassword')"></i>
</div>
<div class="form-group position-relative">
<label for="confirmPsw"><b>Confirm Password</b></label>
<input type="password" class="form-control" id="confirmPsw" placeholder="Confirm Password" name="confirmPsw" required minlength="6">
<i class="bi bi-eye eye-icon" id="toggleConfirmPassword" onclick="togglePasswordVisibility('confirmPsw', 'toggleConfirmPassword')"></i>
</div>
<button type="submit" class="btn btn-primary w-100 mb-3">SIGNUP</button>
<!-- Google Sign-In Button -->
<button type="button" class="btn google-btn" onclick="handleGoogleLogin()">
<img src="./assets/google_icon.webp" alt="Google Logo" class="google-logo">
Sign in with Google</button>
</form>
</div>
<!-- Forgot Password Modal -->
<div id="forgot-password-modal" class="modal">
<div class="form-container modal-content">
<h2>Forgot Password</h2>
<p>Please enter your email address to reset your password.</p>
<label for="email">Email Address</label>
<input type="email" id="email" placeholder="Enter your email" required />
<button class="btn" onclick="submitForgotPassword()">Submit</button>
<button class="btn cancel" onclick="closeForgotPasswordModal()">Cancel</button>
</div>
</div>
<!-- Toggle Password Visibility Script -->
<script>
function togglePasswordVisibility(passwordFieldId, iconId) {
const passwordField = document.getElementById(passwordFieldId);
const togglePassword = document.getElementById(iconId);
if (passwordField.type === 'password') {
passwordField.type = 'text';
togglePassword.classList.remove('bi-eye');
togglePassword.classList.add('bi-eye-slash');
} else {
passwordField.type = 'password';
togglePassword.classList.remove('bi-eye-slash');
togglePassword.classList.add('bi-eye');
}
}
</script>
<!-- CSS Styles -->
<style>
.form-popup {
display: none;
position: fixed;
z-index: 9;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
width: 100%;
max-width: 500px;
padding: 20px;
background-color: white;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.6);
border-radius: 10px;
box-sizing: border-box;
}
.form-container h2 {
margin-bottom: 20px;
color: #333;
}
.form-group {
margin-bottom: 15px;
}
.form-control {
border-radius: 5px;
padding: 12px;
font-size: 16px;
line-height: 1.5;
box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
width: 100%;
}
.forgot {
text-align: right;
margin-left: 50px;
font-size: 10px;
margin-top: -40px;
}
.btn {
margin-top: 10px;
border-radius: 5px;
}
.eye-icon {
position: absolute;
right: 15px;
top: 38px;
cursor: pointer;
color: #007bff;
}
.close-icon {
font-size: 24px;
cursor: pointer;
float: right;
}
.position-relative {
position: relative;
}
/* Login button jumping issue fix */
.btn-primary {
transition: all 0.3s ease; /* Smooth transition */
}
.btn-primary:hover {
background-color: #0056b3;
}
.google-btn {
display: flex;
align-items: center;
justify-content: center;
}
.google-logo {
width: 20px;
height: 20px;
margin-right: 10px;
}
.btn-primary:hover {
background-color: #0056b3;
}
/* Styles for collaborative writing feature */
#collaborators {
margin-bottom: 15px;
}
#collaboratorsList {
list-style-type: none;
padding: 0;
}
#collaboratorsList li {
display: inline-block;
margin-right: 10px;
padding: 5px 10px;
background-color: #f0f0f0;
border-radius: 15px;
}
#addCollaborator {
margin-top: 10px;
}
#collaborativeSection {
border: 1px solid #ccc;
padding: 15px;
margin-bottom: 15px;
border-radius: 5px;
}
#collaborativeContent {
width: 100%;
min-height: 200px;
margin-bottom: 10px;
}
</style>
<!-- Bootstrap Icons and Script for Eye Icon Functionality -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.css">
<script>
function togglePasswordVisibility(passwordFieldId, iconId) {
const passwordField = document.getElementById(passwordFieldId);
const togglePassword = document.getElementById(iconId);
if (passwordField.type === 'password') {
passwordField.type = 'text';
togglePassword.classList.remove('bi-eye');
togglePassword.classList.add('bi-eye-slash');
} else {
passwordField.type = 'password';
togglePassword.classList.remove('bi-eye-slash');
togglePassword.classList.add('bi-eye');
}
}
</script>
<div class="theme-switch-wrapper">
<label class="theme-switch" for="checkbox">
<input type="checkbox" id="checkbox" />
<div class="slider">
<img
src="https://img.icons8.com/emoji/48/000000/sun-emoji.png"
alt="Sun"
class="icon sun-icon"
/>
<img
src="https://img.icons8.com/emoji/48/000000/crescent-moon-emoji.png"
alt="Moon"
class="icon moon-icon"
/>
</div>
</label>
<span id="mode-label"></span>
</div>
</header>
</div>
</nav>
<!--header-->
<!-- main -->
<!-- main -->
<main style="margin-top: 8rem;">
<div class="blog-form-container">
<form id="blogForm" onsubmit="PostBlog(event)">
<h2 style="margin-bottom: 15px">Start Writing</h2>
<label for="blogHeading">Blog Heading:</label>
<input
type="text"
id="blogHeading"
name="heading"
placeholder="Enter blog heading"
required
/>
<label for="blogTopic">Select Topic:</label>
<select id="blogTopic" name="topic" required>
<option value="" disabled selected>Select a topic</option>
<option value="Travel">Travel</option>
<option value="Technology">Technology</option>
<option value="Lifestyle">Lifestyle</option>
</select>
<label for="blogImage">Upload Image:</label>
<input type="file" id="blogImage" name="image" accept="image/*" />
<!-- Collaborative Writing Section -->
<div id="collaborativeSection">
<h3>Collaborative Writing</h3>
<div id="collaborators">
<label>Collaborators:</label>
<ul id="collaboratorsList"></ul>
<input type="text" id="newCollaborator" placeholder="Enter collaborator's email">
<button type="button" id="addCollaborator" class="add-collaborator">Add Collaborator</button>
</div>
<label for="collaborativeContent">Collaborative Content:</label>
<textarea id="collaborativeContent" placeholder="Start collaborative writing here..."></textarea>
</div>
<label for="blogContent">Additional Content:</label>
<div style="position: relative;">
<textarea
id="blogContent"
name="content"
rows="10"
placeholder="Add any additional content here..."
></textarea>
<button type="button" id="start-voice-input"
style="position: absolute;
top: 10.5px;
right: 0px;
margin: 10px;
font-size: 20px;
padding: 7px;">
🎤
</button>
</div>
<!-- Add a button to get writing suggestions -->
<button type="button" id="getSuggestions" style="margin-top: 10px;" class="get-suggestions">Get Suggestions</button>
<!-- Placeholder to show the suggestions -->
<div id="suggestionsContainer" style="margin-top: 15px;">
<h4>Suggestions:</h4>
<p id="suggestionsText">Your suggestions will appear here...</p>
</div>
<label for="writerName">Your Name:</label>
<input
type="text"
id="writerName"
name="writerName"
placeholder="Enter your name"
required
/>
<button type="submit">Submit Blog</button>
</form>
</div>
</main>
<button id="backToTop">⬆️</button>
<!-- main -->
<!-- footer -->
<footer id="footer">
<div class="footer-container">
<div class="row mb-3 col-3-main">
<div class="col-3">
<div id = "about-us">
<h2 class="footer-title secondary-title" >About Us</h2>
<div class="secondary-title text-secondary " >
<p class="mt-2 text-lg" style="text-align: left;" >
We are a close-knit team of passionate storytellers dedicated to sharing captivating content with the world.
</p>
<address class="mt-2">
<i class="fas fa-map-marker-alt text-primary"></i>
5 South Main Street Los Angeles, ZZ-9611 USA
</address>
<div class="phone mt-2">
<i class="fas fa-mobile text-primary"></i>
125-896-485
</div>
<div class="email mt-2">
<a href="mailto: dailysupport@gmail.com" style="color: 3B3B58;"><i class="fas fa-envelope text-primary"></i>
<span id="mailhover">dailysupport@gmail.com</span>
<style>
#mailhover:hover{
color: #f44336;
transition: color 0.5s ease-out;
}
</style>
</a>
</div>
<div>
<!-- <img src="https://hits.sh/anshika-26.github.io/WordWise.svg?label=Website%20Views&extraCount=1515&color=30322f&labelColor=F5B3B5" alt="Web views" style="height: 20px;width: 150px;margin-top: 40px;"> -->
<div class="containerWebsiteViews">
<div class="containerText"><p>Website Views</p></div>
<div class="containerNumbers"><p id="visitorCount">0</p></div>
</div>
</div>
</div>
</div>
</div>
<div class="col-3">
<h2 class="footer-title secondary-title">Feature Post</h2>
<div class="feature-post">
<div class="flex-item">
<article class="article">
<div class="d-flex" style="align-items: flex-start; ">
<a class="d-flex" href="#">
<img src="./assets/img9.webp" class="object-fit" alt="">
<div class="px-1" style="width: 300px; ">
<a href="#" class="text-title display-2 text-dark">
Embrace the beauty of nature through our enchanting blog, where we celebrate the wonders of the natural world
</a>
<p class="secondary-title text-secondary " style="margin-top:3px;margin-left:0px; text-align: left; ">
<span><i class="far fa-clock text-primary"></i> Wed 02, 2022 </span>
</p>
</div>
</a>
</div>
</article>
</div>
<div class="flex-item">
<article class="article">
<div class="d-flex" style="align-items: flex-start; ">
<a class="d-flex" href="#">
<img src="./assets/img1.webp" class="object-fit" alt="">
<div class="px-1" style="width: 300px;">
<a href="#" class="text-title display-2 text-dark">
Embark on unforgettable journeys through our travel blog, where wanderlust meets inspiration
</a>
<p class="secondary-title text-secondary display-3" style="margin-top:3px;margin-left:0px; text-align: left;">
<span><i class="far fa-clock text-primary"></i> Wed 05, 2020 </span>
</p>
</div>
</a>
</div>
</article>
</div>
<div class="flex-item">
<article class="article">
<div class="d-flex" style="align-items: flex-start; ">
<a class="d-flex " href="#" >
<img src="./assets/img2.webp" class="object-fit" alt="">
<div class="px-1" style="width: 300px;">
<a href="#" class="text-title display-2 text-dark">
Gaming Adventures Unleashed
</a>
<p class="secondary-title text-secondary display-3" style="margin-top:3px;margin-left:0px; text-align: left;">
<span><i class="far fa-clock text-primary"></i> Wed 02, 2021 </span>
</p>
</div>
</a>
</div>
</article>
</div>
</div>
</div>
<div class="col-3">
<h2 class="footer-title secondary-title">Popular Tags</h2>
<div class="tags">
<div class="d-flex-gap flex-wrap">
<a href="#" class="nav-link btn bg-light pop-link">Travel</a>
<a href="#" class="nav-link btn bg-light pop-link">Food</a>
<a href="#" class="nav-link btn bg-light pop-link">Lifestyle</a>
<a href="#" class="nav-link btn bg-light pop-link">Techonogy</a>
<a href="#" class="nav-link btn bg-light pop-link">Fashion</a>
</div>
<style>
.pop-link{
transition: 1.0s ease !important;
}
</style>
</div>
<h2 class="footer-title secondary-title mt-5">Connect with us</h2>
<div class="tags social" id="contact">
<div class="d-flex-gap flex-wrap">
<a href="https://www.facebook.com/" id="facebook" class="nav-link btn bg-light"><i class="fab fa-facebook-f"></i></a>
<a href="https://x.com/" id="twitter" class="nav-link btn bg-light"><i class="fa-brands fa-x-twitter"></i></a>
<a href="https://www.instagram.com/" id="instagram" class="nav-link btn bg-light"><i class="fab fa-instagram"></i></a>
<a href="https://dribbble.com/" id="dribbble" class="nav-link btn bg-light"><i class="fab fa-dribbble"></i></a>
<a href="https://github.com/ANSHIKA-26?tab=overview&from=2022-12-01&to=2022-12-31" id="github" target="_blank"
class="nav-link btn bg-light"><i class="fa-brands fa-github"></i></a>
</div>
</div>
</div>
</div>
</div>
<!-- the authentication copyright -->
<div class="wordwise-footer">
<div class="wordwise-footer-content">
<p class="last">© <span id="current-year"></span> WordWise. All rights reserved.</p>
</div>
</div>
</footer>
<!-- .footer -->
<!-- this script is to display the year in the copyright authentication in the footer -->
<script>
document.getElementById('current-year').textContent = new Date().getFullYear();
</script>
<script src="start_writing.js"></script>
<script src="main.js"></script>
<script src="./darkMode.js"></script>
<script src="progress_bar.js"></script>
<script src="https://unpkg.com/swiper/swiper-bundle.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.min.js"></script>
<script src="profiledropdown.js"></script>
<!-- Updated script including collaborative writing feature -->
<script>
document.addEventListener('DOMContentLoaded', function() {
// FAQ Modal functionality
var modal = document.getElementById("faqModal");
var btn = document.getElementById("faqButton");
var span = document.getElementsByClassName("close")[0];
btn.onclick = function() {
modal.style.display = "block";
}
span.onclick = function() {
modal.style.display = "none";
}
window.onclick = function(event) {
if (event.target == modal) {
modal.style.display = "none";
}
}
// Collaborative writing feature
const addCollaboratorBtn = document.getElementById('addCollaborator');
const newCollaboratorInput = document.getElementById('newCollaborator');
const collaboratorsList = document.getElementById('collaboratorsList');
const collaborativeContent = document.getElementById('collaborativeContent');
let collaborators = [];
addCollaboratorBtn.addEventListener('click', function() {
const email = newCollaboratorInput.value.trim();
if (email && !collaborators.includes(email)) {
collaborators.push(email);
updateCollaboratorsList();
newCollaboratorInput.value = '';
}
});
function updateCollaboratorsList() {
collaboratorsList.innerHTML = '';
collaborators.forEach(email => {
const li = document.createElement('li');
li.textContent = email;
collaboratorsList.appendChild(li);
});
}
// Simulating real-time collaboration (for demonstration purposes)
setInterval(() => {
if (collaborators.length > 0) {
const randomCollaborator = collaborators[Math.floor(Math.random() * collaborators.length)];
const simulatedContent = `\n[${randomCollaborator}]: ${generateRandomSentence()}`;
collaborativeContent.value += simulatedContent;
}
}, 10000); // Simulate a new contribution every 10 seconds
function generateRandomSentence() {
const sentences = [
"This is an interesting point.",
"I think we should elaborate on this idea.",
"Let's consider a different perspective here.",
"We could add some examples to support this.",
"I suggest we rephrase this part for clarity."
];
return sentences[Math.floor(Math.random() * sentences.length)];
}
// Update PostBlog function to include collaborative content
window.PostBlog = function(event) {
event.preventDefault();
const blogHeading = document.getElementById('blogHeading').value;
const blogTopic = document.getElementById('blogTopic').value;
const blogImage = document.getElementById('blogImage').files[0];
const blogContent = document.getElementById('blogContent').value;
const writerName = document.getElementById('writerName').value;
// Include collaborative content in the blog post
const fullContent = `Collaborative Content:\n${collaborativeContent.value}\n\nAdditional Content:\n${blogContent}`;
console.log("Blog Heading:", blogHeading);
console.log("Blog Topic:", blogTopic);
console.log("Blog Image:", blogImage ? blogImage.name : "No image uploaded");
console.log("Full Blog Content:", fullContent);
console.log("Writer Name:", writerName);
console.log("Collaborators:", collaborators);
// Here you would typically send this data to your server
// For now, we'll just show an alert
alert("Blog post submitted successfully!");
// Reset the form
document.getElementById('blogForm').reset();
collaborativeContent.value = '';
collaborators = [];
updateCollaboratorsList();
};
// Voice input functionality (assuming it's part of start_writing.js)
const startVoiceInputBtn = document.getElementById('start-voice-input');
if (startVoiceInputBtn) {
startVoiceInputBtn.addEventListener('click', function() {
// Implement voice input functionality here
console.log("Voice input button clicked");
// You would typically start voice recognition here
});
}
});
</script>
<style>
.wordwise-footer-content {
display: flex;
justify-content: center;
align-items: center;
}
#faqButton {
background-color: #007bff;
color: white;
border: none;
padding: 5px 10px;
cursor: pointer;
border-radius: 4px;
}
.modal {
display: none;
position: fixed;
z-index: 1000;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0,0,0,0.4);
}
.modal-content {
background-color: #fefefe;
margin: 15% auto;
padding: 20px;
border: 1px solid #888;
width: 80%;
max-width: 600px;
}
.close {
color: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
cursor: pointer;
}
.close:hover,
.close:focus {
color: black;
text-decoration: none;
}
.faq-item {
margin-bottom: 20px;
}
.faq-item h3 {
margin-bottom: 10px;
}
</style>
<div class="gtranslate_wrapper"></div>
<script>window.gtranslateSettings = {"default_language":"en","detect_browser_language":true,"wrapper_selector":".gtranslate_wrapper"}</script>
<script src="https://cdn.gtranslate.net/widgets/latest/float.js" defer></script>
<script src="script.js"></script>
</body>
</html>