From d27c2fb8c67a8fce4c04b41674868639102477e1 Mon Sep 17 00:00:00 2001 From: Ayesha Siddiqua Date: Mon, 3 Jun 2024 17:19:05 +0530 Subject: [PATCH 01/44] feat:automated thankyou email --- assets/css/style.css | 16 ++++++++------ assets/html/index.html | 5 ++--- assets/js/script.js | 37 +++++++++++++++++++++++++++++++++ index.html | 22 ++++++++++++++++---- package-lock.json | 43 +++++++++++++++++++++++++++++++++++++- package.json | 3 +++ server.js | 47 +----------------------------------------- 7 files changed, 113 insertions(+), 60 deletions(-) diff --git a/assets/css/style.css b/assets/css/style.css index 36df40aeb..aa7e1af7f 100644 --- a/assets/css/style.css +++ b/assets/css/style.css @@ -1311,6 +1311,16 @@ textarea.input-field { gap: 10px; } +.subscribe-btn{ + background-color: var(--old-rose); + color: var(--white); + height: 4rem; + padding: 2px 20px; + border-radius: 5px; + cursor: pointer; + +} + .social-link { background-color: var(--old-rose); color: var(--white); @@ -1462,12 +1472,9 @@ textarea.input-field { } -<<<<<<< Updated upstream -======= .circle-container { display: none; } ->>>>>>> Stashed changes } @media only screen and (max-width: 600px) { @@ -3155,7 +3162,6 @@ body.dark-mode .h3 { .preference-bar select { font-size: 20px; } -<<<<<<< Updated upstream } /* media queries for chat widget */ @@ -3177,6 +3183,4 @@ body.dark-mode .h3 { .bp-widget-web.bp-widget-web{ right: calc(4.95% - 23px) ; } -======= ->>>>>>> Stashed changes } \ No newline at end of file diff --git a/assets/html/index.html b/assets/html/index.html index 7835622d4..58d0c078c 100644 --- a/assets/html/index.html +++ b/assets/html/index.html @@ -1407,9 +1407,8 @@

Quick Links

- - - + +
diff --git a/assets/js/script.js b/assets/js/script.js index 51affaf36..b0793debe 100644 --- a/assets/js/script.js +++ b/assets/js/script.js @@ -1,4 +1,41 @@ 'use strict'; +const nodemailer=require('nodemailer'); +require('dotenv').config(); + +const transporter=nodemailer.createTransport({ + service:'gmail', + host:'smtp.gmail.com', + port:587, + secure:false, + auth:{ + user:"anuragvermacoding@gmail.com", + pass:process.env.APP_PASSWORD + } +}) + +const mailOptions={ + from:{ + name:'SwapReads', + address:"anuragvermacoding@gmail.com" + }, + to:"ayeshasiddiqua.connects@gmail.com", + subject:'Welcome to Our Newsletter!', + text:"Hello, Thank you for subscribing to our newsletter! Stay tuned for exciting updates.", +} + + +const sendMail=async(transporter,mailOptions)=>{ + try{ + await transporter.sendMail(mailOptions); + console.log('Email sent successfully'); + } + catch(error){ + console.error('Error sending email:',error); + } +} + +const subscribeBtn=document.querySelector('.subscribe-btn'); +subscribeBtn.addEventListener('click',sendMail(transporter,mailOptions)); // add event on send message button const sendMessageBtn = document.getElementById('sendMessageBtn'); diff --git a/index.html b/index.html index 9a915e584..6a0b09598 100644 --- a/index.html +++ b/index.html @@ -1596,9 +1596,8 @@

Quick Links

- - - + +
  • From fa5d5d9b3e292ad6be6088ef2408de53588efcec Mon Sep 17 00:00:00 2001 From: Jayraj Date: Mon, 3 Jun 2024 20:00:04 +0530 Subject: [PATCH 04/44] TOOGLE: --- assets/css/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/css/style.css b/assets/css/style.css index 52274deba..9d5c71554 100644 --- a/assets/css/style.css +++ b/assets/css/style.css @@ -2718,7 +2718,7 @@ footer { background-color: #ccc; border-radius: 20px; cursor: pointer; - + margin-right:30px; display: flex; align-items: center; justify-content: center; From 9a7cd4d494fc1a978fa486741aeee707e1df6534 Mon Sep 17 00:00:00 2001 From: Abhigna Arsam <125258286+Abhigna-arsam@users.noreply.github.com> Date: Mon, 3 Jun 2024 20:11:36 +0530 Subject: [PATCH 05/44] Add files via upload --- assets/css/about.css | 65 ++++ assets/css/contributor.css | 675 +++++++++++++++++++++++++++++++++++++ 2 files changed, 740 insertions(+) create mode 100644 assets/css/about.css create mode 100644 assets/css/contributor.css diff --git a/assets/css/about.css b/assets/css/about.css new file mode 100644 index 000000000..478386204 --- /dev/null +++ b/assets/css/about.css @@ -0,0 +1,65 @@ +*{ + margin: 0px; + padding: 0px; + box-sizing: border-box; + +} + +body{ + background-color: rgb(225, 148, 148); +} +.heading{ + text-align: center; + margin-top: 25px; +} +.heading{ + text-align: center; + margin-top: 25px; +} +.heading h1{ + font-size: 50px; + color: rgb(143, 75, 58); + +} + +.heading p{ + font-size: 20px; + color: #666; + margin-bottom: 50px; +} +.about-us{ + display: flex; + align-items: center; + +} +.about-us img{ + flex: 0 50%; + max-width: 40%; + height: auto; +} +.content{ + padding: 35px; +} +.content h2{ + color: rgb(158, 77, 52); + font-size: 24px; + margin: 15px 0px; + +} + +.content p{ + color: #666; + font-size: 18px; + line-height: 1.5; + margin: 15px 0px; +} + +.contribute{ + text-align: center; + margin-top: 25px; +} +.contribute h1{ + font-size: 50px; + color: rgb(191, 110, 87); + +} \ No newline at end of file diff --git a/assets/css/contributor.css b/assets/css/contributor.css new file mode 100644 index 000000000..8259e8528 --- /dev/null +++ b/assets/css/contributor.css @@ -0,0 +1,675 @@ +/* +! tailwindcss v3.4.3 | MIT License | https://tailwindcss.com +*/ + +/* +1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4) +2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116) +*/ + +*, +::before, +::after { + box-sizing: border-box; + /* 1 */ + border-width: 0; + /* 2 */ + border-style: solid; + /* 2 */ + border-color: #e5e7eb; + /* 2 */ +} +.contributor-card:nth-child(4n+1), +.contributor-card:nth-child(4n+3) { + margin-top: -4px; +} + +.contributor-card { + width: 95px; + height: 95px; + clip-path: circle(40%); + margin: 5px; + transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out; +} + +.contributor-card:hover { + box-shadow: 0 0 10px rgba(253, 251, 251, 0.5); + /* Adjust the color and size of the glow as needed */ +} + +.contributor-card:active { + transform: scale(1.1); + opacity: 0.8; + box-shadow: 0 0 20px rgb(188, 240, 210); + /* Adjust the color and size of the glow as needed */ +} + +/* h1 { + font-family: Arial, sans-serif; + font-weight: bold; + margin-top: 25px; + font-size: 45px; + color: var(--light); + text-align: center; + transition: color 0.3s ease-in-out; + cursor: pointer; +} + +h1:hover { + color: var(--primary); +} */ + +#contributor { + margin: 0; + padding: 50px 0; + display: flex; + flex-wrap: wrap; + justify-content: center; + align-items: center; +} +.loading{ + font-size: xx-large; +} +.loading:after { +overflow: hidden; +display: inline-block; +vertical-align: bottom; +-webkit-animation: ellipsis steps(4, end) 900ms infinite; +animation: ellipsis steps(4, end) 900ms infinite; +content: "\2026"; +/* ascii code for the ellipsis character */ +width: 0px; +} + +@keyframes ellipsis { +to { +width: 40px; +} +} + +@-webkit-keyframes ellipsis { +to { +width: 40px; +} +} +::before, +::after { + --tw-content: ''; +} + +/* +1. Use a consistent sensible line-height in all browsers. +2. Prevent adjustments of font size after orientation changes in iOS. +3. Use a more readable tab size. +4. Use the user's configured `sans` font-family by default. +5. Use the user's configured `sans` font-feature-settings by default. +6. Use the user's configured `sans` font-variation-settings by default. +7. Disable tap highlights on iOS +*/ + +html, +:host { + line-height: 1.5; + /* 1 */ + -webkit-text-size-adjust: 100%; + /* 2 */ + -moz-tab-size: 4; + /* 3 */ + -o-tab-size: 4; + tab-size: 4; + /* 3 */ + font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + /* 4 */ + font-feature-settings: normal; + /* 5 */ + font-variation-settings: normal; + /* 6 */ + -webkit-tap-highlight-color: transparent; + /* 7 */ +} + +/* +1. Remove the margin in all browsers. +2. Inherit line-height from `html` so users can set them as a class directly on the `html` element. +*/ + +body { + margin: 0; + /* 1 */ + line-height: inherit; + /* 2 */ +} + +/* +1. Add the correct height in Firefox. +2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655) +3. Ensure horizontal rules are visible by default. +*/ +.navcenter{ + align-items: center; + margin-left: 0 !important; +} + +hr { + height: 0; + /* 1 */ + color: inherit; + /* 2 */ + border-top-width: 1px; + /* 3 */ +} + +/* +Add the correct text decoration in Chrome, Edge, and Safari. +*/ + +abbr:where([title]) { + -webkit-text-decoration: underline dotted; + text-decoration: underline dotted; +} + +.floatleft{ + float:left; +} +.floatright{ + float:right; +} +/* +Remove the default font size and weight for headings. +*/ + +h1, +h2, +h3, +h4, +h5, +h6 { + font-size: inherit; + font-weight: inherit; +} + +/* +Reset links to optimize for opt-in styling instead of opt-out. +*/ + +a { + color: inherit; + text-decoration: inherit; +} + +/* +Add the correct font weight in Edge and Safari. +*/ + +b, +strong { + font-weight: bolder; +} + +/* +1. Use the user's configured `mono` font-family by default. +2. Use the user's configured `mono` font-feature-settings by default. +3. Use the user's configured `mono` font-variation-settings by default. +4. Correct the odd `em` font sizing in all browsers. +*/ + +code, +kbd, +samp, +pre { + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + /* 1 */ + font-feature-settings: normal; + /* 2 */ + font-variation-settings: normal; + /* 3 */ + font-size: 1em; + /* 4 */ +} + +/* +Add the correct font size in all browsers. +*/ + +small { + font-size: 80%; +} + +/* +Prevent `sub` and `sup` elements from affecting the line height in all browsers. +*/ + +sub, +sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; +} + +sub { + bottom: -0.25em; +} + +sup { + top: -0.5em; +} + +/* +1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297) +2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016) +3. Remove gaps between table borders by default. +*/ + +table { + text-indent: 0; + /* 1 */ + border-color: inherit; + /* 2 */ + border-collapse: collapse; + /* 3 */ +} + +/* +1. Change the font styles in all browsers. +2. Remove the margin in Firefox and Safari. +3. Remove default padding in all browsers. +*/ + +button, +input, +optgroup, +select, +textarea { + font-family: inherit; + /* 1 */ + font-feature-settings: inherit; + /* 1 */ + font-variation-settings: inherit; + /* 1 */ + font-size: 100%; + /* 1 */ + font-weight: inherit; + /* 1 */ + line-height: inherit; + /* 1 */ + letter-spacing: inherit; + /* 1 */ + color: inherit; + /* 1 */ + margin: 0; + /* 2 */ + padding: 0; + /* 3 */ +} + +/* +Remove the inheritance of text transform in Edge and Firefox. +*/ + +button, +select { + text-transform: none; +} + +/* +1. Correct the inability to style clickable types in iOS and Safari. +2. Remove default button styles. +*/ + +button, +input:where([type='button']), +input:where([type='reset']), +input:where([type='submit']) { + -webkit-appearance: button; + /* 1 */ + background-color: transparent; + /* 2 */ + background-image: none; + /* 2 */ +} + +/* +Use the modern Firefox focus style for all focusable elements. +*/ + +:-moz-focusring { + outline: auto; +} + +/* +Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737) +*/ + +:-moz-ui-invalid { + box-shadow: none; +} + +/* +Add the correct vertical alignment in Chrome and Firefox. +*/ + +progress { + vertical-align: baseline; +} + +/* +Correct the cursor style of increment and decrement buttons in Safari. +*/ + +::-webkit-inner-spin-button, +::-webkit-outer-spin-button { + height: auto; +} + +/* +1. Correct the odd appearance in Chrome and Safari. +2. Correct the outline style in Safari. +*/ + +[type='search'] { + -webkit-appearance: textfield; + /* 1 */ + outline-offset: -2px; + /* 2 */ +} + +/* +Remove the inner padding in Chrome and Safari on macOS. +*/ + +::-webkit-search-decoration { + -webkit-appearance: none; +} + +/* +1. Correct the inability to style clickable types in iOS and Safari. +2. Change font properties to `inherit` in Safari. +*/ + +::-webkit-file-upload-button { + -webkit-appearance: button; + /* 1 */ + font: inherit; + /* 2 */ +} + +/* +Add the correct display in Chrome and Safari. +*/ + +summary { + display: list-item; +} + +/* +Removes the default spacing and border for appropriate elements. +*/ + +blockquote, +dl, +dd, +h1, +h2, +h3, +h4, +h5, +h6, +hr, +figure, +p, +pre { + margin: 0; +} + +fieldset { + margin: 0; + padding: 0; +} + +legend { + padding: 0; +} + +ol, +ul, +menu { + list-style: none; + margin: 0; + padding: 0; +} + +/* +Reset default styling for dialogs. +*/ + +dialog { + padding: 0; +} + +/* +Prevent resizing textareas horizontally by default. +*/ + +textarea { + resize: vertical; +} + +/* +1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300) +2. Set the default placeholder color to the user's configured gray 400 color. +*/ + +input::-moz-placeholder, textarea::-moz-placeholder { + opacity: 1; + /* 1 */ + color: #9ca3af; + /* 2 */ +} + +input::placeholder, +textarea::placeholder { + opacity: 1; + /* 1 */ + color: #9ca3af; + /* 2 */ +} + +/* +Set the default cursor for buttons. +*/ + +button, +[role="button"] { + cursor: pointer; +} + +/* +Make sure disabled buttons don't get the pointer cursor. +*/ + +:disabled { + cursor: default; +} + +/* +1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14) +2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210) + This can trigger a poorly considered lint error in some tools but is included by design. +*/ + +img, +svg, +video, +canvas, +audio, +iframe, +embed, +object { + display: block; + /* 1 */ + vertical-align: middle; + /* 2 */ +} + +/* +Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14) +*/ + +img, +video { + max-width: 100%; + height: auto; +} + +/* Make elements with the HTML hidden attribute stay hidden by default */ + +[hidden] { + display: none; +} + +*, ::before, ::after { + --tw-border-spacing-x: 0; + --tw-border-spacing-y: 0; + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + --tw-pan-x: ; + --tw-pan-y: ; + --tw-pinch-zoom: ; + --tw-scroll-snap-strictness: proximity; + --tw-gradient-from-position: ; + --tw-gradient-via-position: ; + --tw-gradient-to-position: ; + --tw-ordinal: ; + --tw-slashed-zero: ; + --tw-numeric-figure: ; + --tw-numeric-spacing: ; + --tw-numeric-fraction: ; + --tw-ring-inset: ; + --tw-ring-offset-width: 0px; + --tw-ring-offset-color: #fff; + --tw-ring-color: rgb(59 130 246 / 0.5); + --tw-ring-offset-shadow: 0 0 #0000; + --tw-ring-shadow: 0 0 #0000; + --tw-shadow: 0 0 #0000; + --tw-shadow-colored: 0 0 #0000; + --tw-blur: ; + --tw-brightness: ; + --tw-contrast: ; + --tw-grayscale: ; + --tw-hue-rotate: ; + --tw-invert: ; + --tw-saturate: ; + --tw-sepia: ; + --tw-drop-shadow: ; + --tw-backdrop-blur: ; + --tw-backdrop-brightness: ; + --tw-backdrop-contrast: ; + --tw-backdrop-grayscale: ; + --tw-backdrop-hue-rotate: ; + --tw-backdrop-invert: ; + --tw-backdrop-opacity: ; + --tw-backdrop-saturate: ; + --tw-backdrop-sepia: ; + --tw-contain-size: ; + --tw-contain-layout: ; + --tw-contain-paint: ; + --tw-contain-style: ; +} + +::backdrop { + --tw-border-spacing-x: 0; + --tw-border-spacing-y: 0; + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + --tw-pan-x: ; + --tw-pan-y: ; + --tw-pinch-zoom: ; + --tw-scroll-snap-strictness: proximity; + --tw-gradient-from-position: ; + --tw-gradient-via-position: ; + --tw-gradient-to-position: ; + --tw-ordinal: ; + --tw-slashed-zero: ; + --tw-numeric-figure: ; + --tw-numeric-spacing: ; + --tw-numeric-fraction: ; + --tw-ring-inset: ; + --tw-ring-offset-width: 0px; + --tw-ring-offset-color: #fff; + --tw-ring-color: rgb(59 130 246 / 0.5); + --tw-ring-offset-shadow: 0 0 #0000; + --tw-ring-shadow: 0 0 #0000; + --tw-shadow: 0 0 #0000; + --tw-shadow-colored: 0 0 #0000; + --tw-blur: ; + --tw-brightness: ; + --tw-contrast: ; + --tw-grayscale: ; + --tw-hue-rotate: ; + --tw-invert: ; + --tw-saturate: ; + --tw-sepia: ; + --tw-drop-shadow: ; + --tw-backdrop-blur: ; + --tw-backdrop-brightness: ; + --tw-backdrop-contrast: ; + --tw-backdrop-grayscale: ; + --tw-backdrop-hue-rotate: ; + --tw-backdrop-invert: ; + --tw-backdrop-opacity: ; + --tw-backdrop-saturate: ; + --tw-backdrop-sepia: ; + --tw-contain-size: ; + --tw-contain-layout: ; + --tw-contain-paint: ; + --tw-contain-style: ; +} + +.container { + width: 100%; +} + +@media (min-width: 640px) { + .container { + max-width: 640px; + } +} + +@media (min-width: 768px) { + .container { + max-width: 768px; + } +} + +@media (min-width: 1024px) { + .container { + max-width: 1024px; + } + .hidden-desktop{ + display: none !important; + } +} + +@media (min-width: 1280px) { + .container { + max-width: 1280px; + } +} + +@media (min-width: 1536px) { + .container { + max-width: 1536px; + } +} + From ab0b42b3f1ebb2ef8f9d3328cf22b0a2def2ed42 Mon Sep 17 00:00:00 2001 From: Abhigna Arsam <125258286+Abhigna-arsam@users.noreply.github.com> Date: Mon, 3 Jun 2024 20:17:25 +0530 Subject: [PATCH 06/44] Add files via upload --- assets/js/contribute.js | 121 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 121 insertions(+) create mode 100644 assets/js/contribute.js diff --git a/assets/js/contribute.js b/assets/js/contribute.js new file mode 100644 index 000000000..a16481f31 --- /dev/null +++ b/assets/js/contribute.js @@ -0,0 +1,121 @@ +const loading = document.getElementById("loading1"); +loading.innerHTML = `

    Loading

    `; +// Hamburger menu +// hamBurger.addEventListener("click", mobileMenu); +// function mobileMenu() { +// hamBurger.classList.toggle("active"); +// nMenu.classList.toggle("active"); +// } + +const cont = document.getElementById("contributor"); +const owner = "anuragverma108"; +const repoName = "SwapReads"; + +async function fetchContributors(pageNumber) { + const apiUrl = + "https://script.googleusercontent.com/macros/echo?user_content_key=SOnBnlAhhwAY2lLH5HfppGmJGT_2ps5V6IQnMqMGBXbQfQRkZzw_v_5iRGG0aocf2N5fb1QagfriAH_KtdGjmF5EZ-d2l64Mm5_BxDlH2jW0nuo2oDemN9CCS2h10ox_1xSncGQajx_ryfhECjZEnC62rQSNc23BPEU_1j4s8hh_HP6kAPpX9xtypcE4mPgzpikbBkSG4MZLP8aImUTewbmUkdfzbTtyUarIvNXMDMKXAagsogLIsQ&lib=MghKih2WtI3ppVHa2nSvtXXt7vnFOnL-L"; + + async function getkey() { + try { + const response = await fetch(apiUrl); + if (!response.ok) { + throw new Error("Network response was not ok"); + } + const data = await response.json(); + console.log(data); // Log the response data + return data.apik[0].apikey; + } catch (error) { + console.error("Error fetching data:", error); + } + } + const token = await getkey(); + const perPage = 100; + const url = `https://api.github.com/repos/${owner}/${repoName}/contributors?page=${pageNumber}&per_page=${perPage}`; + + const response = await fetch(url, { + headers: { + Authorization: `Bearer ${token}`, + }, + }); + if (!response.ok) { + throw new Error( + `Failed to fetch contributors data. Status code: ${response.status}` + ); + } + + const contributorsData = await response.json(); + loading.innerHTML = ``; + return contributorsData; +} + +// Function to fetch all contributors +async function fetchAllContributors() { + let allContributors = []; + let pageNumber = 1; + + try { + while (true) { + const contributorsData = await fetchContributors(pageNumber); + if (contributorsData.length === 0) { + break; + } + allContributors = allContributors.concat(contributorsData); + pageNumber++; + } + allContributors.forEach((contributor) => { + if (contributor.login === owner) { + return; + } + + const contributorCard = document.createElement("div"); + contributorCard.classList.add("contributor-card"); + + const avatarImg = document.createElement("img"); + avatarImg.src = contributor.avatar_url; + avatarImg.alt = `${contributor.login}'s Picture`; + + const loginLink = document.createElement("a"); + loginLink.href = contributor.html_url; + loginLink.target = "_blank"; + loginLink.appendChild(avatarImg); + + contributorCard.appendChild(loginLink); + + cont.appendChild(contributorCard); + }); + } catch (error) { + console.error(error); + } +} + +fetchAllContributors(); + +let calcScrollValue = () => { + let scrollProg = document.getElementById("progress"); + let pos = document.documentElement.scrollTop; + let calcHeight = + document.documentElement.scrollHeight - + document.documentElement.clientHeight; + let scrollValue = Math.round((pos * 100) / calcHeight); + if (pos > 100) { + scrollProg.style.display = "grid"; + } else { + scrollProg.style.display = "none"; + } + scrollProg.addEventListener("click", () => { + document.documentElement.scrollTop = 0; + }); + scrollProg.style.background = `conic-gradient(#0063ba ${scrollValue}%, #d499de ${scrollValue}%)`; +}; + +window.addEventListener("scroll", function () { + var scrollToTopButton = document.getElementById("progress"); + if (window.pageYOffset > 200) { + scrollToTopButton.style.display = "block"; + } else { + scrollToTopButton.style.display = "none"; + } +}); + +window.onscroll = calcScrollValue; +window.onload = calcScrollValue; From ff7e264e99fc939b4120075cf9b917f4552ccb82 Mon Sep 17 00:00:00 2001 From: Abhigna Arsam <125258286+Abhigna-arsam@users.noreply.github.com> Date: Mon, 3 Jun 2024 20:18:14 +0530 Subject: [PATCH 07/44] Add files via upload --- assets/html/About1.html | 181 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 181 insertions(+) create mode 100644 assets/html/About1.html diff --git a/assets/html/About1.html b/assets/html/About1.html new file mode 100644 index 000000000..98d88a80d --- /dev/null +++ b/assets/html/About1.html @@ -0,0 +1,181 @@ + + + + + + Document + + + + + +
    + +
    + +
    + +
    +
    +
    +
    + +
    +

    About Us

    +
    +
    +
    + + +
    + +

    SwapReads.com connects readers globally to exchange books, promoting a cost-effective, sustainable, and social reading experience. Users share favorite reads, provide personalized recommendations, and revitalize unused book collections, addressing limited local access, high costs, environmental impact, and lack of personal touch in book discovery. This platform fosters a community where readers can connect, discuss, and discover new books while reducing waste and expenses.

    +
    +
    +
    +
    +
    +

    Faces of Dedication: Our Contributing Heroes

    +
    +
    +
    +
    + + + +
    +
    +
    +
    + + +

    SwapReads.com is the ultimate destination for book lovers + seeking to swap and + + discover new literary gems. + Connect with fellow enthusiasts, exchange your favorite reads, and embark on exciting new adventures in the + world of literature—all on one convenient platform. Join us and dive into a universe of endless + possibilities! +

    +
    +
    +
    +

    Quick Links

    + +
    +
    + + + + \ No newline at end of file From 1605301c3ce86bf9426a879746fdcb1943f38e82 Mon Sep 17 00:00:00 2001 From: Abhigna Arsam <125258286+Abhigna-arsam@users.noreply.github.com> Date: Mon, 3 Jun 2024 20:20:46 +0530 Subject: [PATCH 08/44] Update About1.html --- assets/html/About1.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/assets/html/About1.html b/assets/html/About1.html index 98d88a80d..b52ae474b 100644 --- a/assets/html/About1.html +++ b/assets/html/About1.html @@ -4,8 +4,8 @@ Document - - + + @@ -176,6 +176,6 @@

    Quick Links

    - + - \ No newline at end of file + From 5f2c8adb6d6f3392be13a18a5a3b75cec4174f06 Mon Sep 17 00:00:00 2001 From: Abhigna Arsam <125258286+Abhigna-arsam@users.noreply.github.com> Date: Mon, 3 Jun 2024 20:28:25 +0530 Subject: [PATCH 09/44] Update and rename About1.html to about1.html --- assets/html/{About1.html => about1.html} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename assets/html/{About1.html => about1.html} (100%) diff --git a/assets/html/About1.html b/assets/html/about1.html similarity index 100% rename from assets/html/About1.html rename to assets/html/about1.html From b75e428f546bcb78f13cffff4b8fb4f0e41a8c17 Mon Sep 17 00:00:00 2001 From: Abhigna Arsam <125258286+Abhigna-arsam@users.noreply.github.com> Date: Mon, 3 Jun 2024 20:29:40 +0530 Subject: [PATCH 10/44] Update index.html --- index.html | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index c05982880..937ec893e 100644 --- a/index.html +++ b/index.html @@ -314,7 +314,10 @@ Home
  • - +
  • @@ -914,7 +914,7 @@

    05.  Historical Chronicles

    - +
  • @@ -929,7 +929,7 @@

    06.  Science Fiction Wonders

    - +
  • @@ -1069,7 +1069,7 @@

    -
    @@ -1155,7 +1155,7 @@

    - +
    @@ -1363,9 +1363,9 @@

    B.Sharmila

    - +
    -

    Prem Sampath

    +

    Jane Doe

    @@ -1378,9 +1378,9 @@

    Prem Sampath

    - SwapReads is a bookworm's paradise! With its user-friendly interface, welcoming community, and vast variety - of books for swapping, I've embarked on countless new literary adventures. It's like an ever-active book - club where I've connected with fellow literature lovers. I'm completely hooked! + I love SwapReads! It's a fantastic way to keep my reading list dynamic and engaging. The platform is + easy to use, and the community is incredibly supportive and passionate about books. SwapReads has + definitely enriched my reading experience.
    @@ -1395,9 +1395,9 @@

    Prem Sampath

    - +
    -

    Aron Loes

    +

    Maya Verma

    @@ -1410,8 +1410,9 @@

    Aron Loes

    - SwapReads has transformed my reading habits. Beyond swapping books, it's about fostering a community of - passionate readers. I've made friends, broadened my literary horizons, and unearthed hidden gems. Thank you, + SwapReads has completely changed the way I read and discover books. The swapping system is seamless, + and I've found so many new favorites. Plus, the community is amazing – it's like having a book club at + my fingertips!
    @@ -1478,7 +1479,7 @@

    How do I ensure the safety and security of my personal information on SwapRe - @@ -1751,12 +1752,12 @@

    Quick Links

    - - @@ -1933,4 +1934,4 @@

    Quick Links

    - \ No newline at end of file + From 34df883a26084de9f93ac43d483287bd680736af Mon Sep 17 00:00:00 2001 From: Harshwardhan Date: Mon, 3 Jun 2024 20:42:20 +0530 Subject: [PATCH 12/44] testimonal card fix by harshcodesit --- index.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/index.html b/index.html index c05982880..591ef7e65 100644 --- a/index.html +++ b/index.html @@ -81,6 +81,7 @@ } } +/* testimonal card fix by harshcodesit */ swiper-slide { text-align: center; font-size: 18px; @@ -88,7 +89,9 @@ display: flex; justify-content: center; align-items: center; + margin-bottom: 55px; } + /* ########### */ swiper-slide img { display: block; From 0a9b50a76d666847ad5235ee16b0b6d2572aa761 Mon Sep 17 00:00:00 2001 From: VijaySamant4368 Date: Mon, 3 Jun 2024 22:34:14 +0530 Subject: [PATCH 13/44] Corrected navbar Padding --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index c05982880..dec69ba09 100644 --- a/index.html +++ b/index.html @@ -299,7 +299,7 @@
    -
    +
    +

    Hello There, Bookworms!

    Forgot your password?

    No worries! We'll send you a verification code on registered email.

    -
    +
    @@ -213,6 +214,7 @@

    Hello There, Bookworms!

    Back to Login
    + From 07211e962ca25d9d065d064cb40226851b20e378 Mon Sep 17 00:00:00 2001 From: SuhainaFathimaM Date: Tue, 4 Jun 2024 13:15:02 +0530 Subject: [PATCH 20/44] Added styles to back to top icon in the page --- assets/css/style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/css/style.css b/assets/css/style.css index 860682822..314b2a413 100644 --- a/assets/css/style.css +++ b/assets/css/style.css @@ -2689,11 +2689,11 @@ footer { } .circle1:hover { - background-color: black; + background-color: white; } #back-to-top:hover { - fill: hsl(357, 93%, 84%); + fill: black; } /* Switch Container */ From a90264a66d95baab5186bb55f6a1dcb8a45438e4 Mon Sep 17 00:00:00 2001 From: SuhainaFathimaM Date: Tue, 4 Jun 2024 13:24:32 +0530 Subject: [PATCH 21/44] Made the X icon visible in dark mode --- index.html | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/index.html b/index.html index c05982880..2f9907720 100644 --- a/index.html +++ b/index.html @@ -1639,15 +1639,16 @@

    Quick Links

    .icons .icon:hover .fa-brands.fa-square-x-twitter{ color: #090e11; + background-color: white; /* Change to Twitter color on hover */ } .icons .icon:hover .fab.fa-instagram-square { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); - background-clip: text; - border-radius: 20%; - transform: scale(1.5); - color:transparent; + background-clip: text; + border-radius: 20%; + transform: scale(1.5); + color:transparent; /* Change to Instagram color on hover */ } From 5a06ce5876090c8ef7bfe2c2923cecb0ff494f5e Mon Sep 17 00:00:00 2001 From: kashnx Date: Tue, 4 Jun 2024 16:16:09 +0530 Subject: [PATCH 22/44] h --- assets/css/preloader.css | 4 +- assets/html/about.html | 140 ++++++++++++++++++++++++++++++++++ assets/html/booklistswap.html | 8 +- 3 files changed, 146 insertions(+), 6 deletions(-) diff --git a/assets/css/preloader.css b/assets/css/preloader.css index ceaedd70c..057f281f2 100644 --- a/assets/css/preloader.css +++ b/assets/css/preloader.css @@ -27,9 +27,9 @@ } /* Hide scrollbar */ -body { +/* body { overflow: hidden; -} +} */ .loader { display: flex; diff --git a/assets/html/about.html b/assets/html/about.html index c3f60277a..c3aa13ad4 100644 --- a/assets/html/about.html +++ b/assets/html/about.html @@ -7,6 +7,9 @@ + + + @@ -133,6 +136,9 @@ padding: 0.5rem; } } +footer{ + padding: 0; +} @media only screen and (max-width: 1250px) { .about-us-community, .about-us-event, .about-us-location, .about-us-product { @@ -274,6 +280,139 @@

    About Us

    + +
    +
    +
    +
    + + +
    +

    SwapReads.com is the ultimate destination for book + lovers + seeking to swap and + + discover new literary gems. + Connect with fellow enthusiasts, exchange your favorite reads, and embark on exciting new adventures in + the + world of literature—all on one convenient platform. Join us and dive into a universe of endless + possibilities! +

    +
    +
    +
    +
    +

    Quick Links

    + +
    +
    + diff --git a/assets/html/booklistswap.html b/assets/html/booklistswap.html index aacdd6eed..a5594db93 100644 --- a/assets/html/booklistswap.html +++ b/assets/html/booklistswap.html @@ -77,14 +77,14 @@ font-family: var(--ff-philosopher); background-color: var(--seashell); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 1600 800'%3E%3Cg %3E%3Cpath fill='%23ffb9b0' d='M486 705.8c-109.3-21.8-223.4-32.2-335.3-19.4C99.5 692.1 49 703 0 719.8V800h843.8c-115.9-33.2-230.8-68.1-347.6-92.2C492.8 707.1 489.4 706.5 486 705.8z'/%3E%3Cpath fill='%23ffc1b7' d='M1600 0H0v719.8c49-16.8 99.5-27.8 150.7-33.5c111.9-12.7 226-2.4 335.3 19.4c3.4 0.7 6.8 1.4 10.2 2c116.8 24 231.7 59 347.6 92.2H1600V0z'/%3E%3Cpath fill='%23ffc8bf' d='M478.4 581c3.2 0.8 6.4 1.7 9.5 2.5c196.2 52.5 388.7 133.5 593.5 176.6c174.2 36.6 349.5 29.2 518.6-10.2V0H0v574.9c52.3-17.6 106.5-27.7 161.1-30.9C268.4 537.4 375.7 554.2 478.4 581z'/%3E%3Cpath fill='%23ffcfc6' d='M0 0v429.4c55.6-18.4 113.5-27.3 171.4-27.7c102.8-0.8 203.2 22.7 299.3 54.5c3 1 5.9 2 8.9 3c183.6 62 365.7 146.1 562.4 192.1c186.7 43.7 376.3 34.4 557.9-12.6V0H0z'/%3E%3Cpath fill='%23FFD6CE' d='M181.8 259.4c98.2 6 191.9 35.2 281.3 72.1c2.8 1.1 5.5 2.3 8.3 3.4c171 71.6 342.7 158.5 531.3 207.7c198.8 51.8 403.4 40.8 597.3-14.8V0H0v283.2C59 263.6 120.6 255.7 181.8 259.4z'/%3E%3Cpath fill='%23ffdcd4' d='M1600 0H0v136.3c62.3-20.9 127.7-27.5 192.2-19.2c93.6 12.1 180.5 47.7 263.3 89.6c2.6 1.3 5.1 2.6 7.7 3.9c158.4 81.1 319.7 170.9 500.3 223.2c210.5 61 430.8 49 636.6-16.6V0z'/%3E%3Cpath fill='%23ffe1d9' d='M454.9 86.3C600.7 177 751.6 269.3 924.1 325c208.6 67.4 431.3 60.8 637.9-5.3c12.8-4.1 25.4-8.4 38.1-12.9V0H288.1c56 21.3 108.7 50.6 159.7 82C450.2 83.4 452.5 84.9 454.9 86.3z'/%3E%3Cpath fill='%23ffe6df' d='M1600 0H498c118.1 85.8 243.5 164.5 386.8 216.2c191.8 69.2 400 74.7 595 21.1c40.8-11.2 81.1-25.2 120.3-41.7V0z'/%3E%3Cpath fill='%23ffebe4' d='M1397.5 154.8c47.2-10.6 93.6-25.3 138.6-43.8c21.7-8.9 43-18.8 63.9-29.5V0H643.4c62.9 41.7 129.7 78.2 202.1 107.4C1020.4 178.1 1214.2 196.1 1397.5 154.8z'/%3E%3Cpath fill='%23FFF0EA' d='M1315.3 72.4c75.3-12.6 148.9-37.1 216.8-72.4h-723C966.8 71 1144.7 101 1315.3 72.4z'/%3E%3C/g%3E%3C/svg%3E"); - margin: 0; - padding: 0; + /* margin: 0; + padding: 0; */ display: flex; flex-direction: column; align-items: center; justify-content: flex-start; - height: 100vh; - width: 100%; + /* height: 100vh; */ + /* width: 100%; */ } footer{ width: 100%; From 6c0773a25327b05ebb61b631a6621d0a229e8f20 Mon Sep 17 00:00:00 2001 From: kashnx Date: Tue, 4 Jun 2024 16:35:09 +0530 Subject: [PATCH 23/44] h --- assets/css/style.css | 1 + 1 file changed, 1 insertion(+) diff --git a/assets/css/style.css b/assets/css/style.css index 860682822..cbe5b9f06 100644 --- a/assets/css/style.css +++ b/assets/css/style.css @@ -1583,6 +1583,7 @@ textarea.input-field { footer { background-color: var(--seashell); padding: 20px 30px; + width: 100vw; } .foot-top { From eac3ffe2d816e9cf0d827a642cdd741fd01d37f5 Mon Sep 17 00:00:00 2001 From: Jayraj Date: Tue, 4 Jun 2024 17:12:06 +0530 Subject: [PATCH 24/44] ResetPsed --- assets/css/forgot-pass.css | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/assets/css/forgot-pass.css b/assets/css/forgot-pass.css index 2ae9377cc..37e344db9 100644 --- a/assets/css/forgot-pass.css +++ b/assets/css/forgot-pass.css @@ -45,13 +45,16 @@ body { /* intro to page */ - .bookworms{ + + .bookworms { display: flex; - margin-top:120px; + flex-direction: column; + /* margin-top: 120px; */ margin-left: 50px; margin-bottom: 40px; align-items: center; - } +} + .bookworm{ font-family: var(--ff-philosopher); color: rgb(247, 150, 150); @@ -90,7 +93,7 @@ body { overflow: hidden; position: absolute; - /* display: flex; */ + display: flex; position: relative; flex-direction: column; font-family: var(--ff-poppins); @@ -98,6 +101,7 @@ body { width: 480PX; height: auto; margin-left: 40px; + border-radius: 2%; padding: 10PX; box-shadow: 0 0 15px 5px #24004628; From 5dbdb4165560d6c618600debb884acbc45a15cf6 Mon Sep 17 00:00:00 2001 From: Disha T Date: Tue, 4 Jun 2024 17:14:05 +0530 Subject: [PATCH 25/44] --- assets/css/style.css | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/assets/css/style.css b/assets/css/style.css index 860682822..22010bfd8 100644 --- a/assets/css/style.css +++ b/assets/css/style.css @@ -353,6 +353,7 @@ body { .section-text { font-size: var(--fs-7); text-align: start; + margin: 0 30px; /*added margin to align the text*/ } .booktext { @@ -399,7 +400,6 @@ body { .has-underline { position: relative; - margin-block-end: 60px; } .has-underline .span { @@ -464,12 +464,6 @@ body { object-fit: cover; } -.section-text{ - margin-left: 3rem; - margin-right: 3rem; -} - - /*-----------------------------------*\ #HEADER \*-----------------------------------*/ From 5e34329639fa8b908da328727aec64bd0a455f09 Mon Sep 17 00:00:00 2001 From: Jayraj Date: Tue, 4 Jun 2024 17:22:35 +0530 Subject: [PATCH 26/44] . --- assets/css/forgot-pass.css | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/assets/css/forgot-pass.css b/assets/css/forgot-pass.css index 37e344db9..577d5cc8f 100644 --- a/assets/css/forgot-pass.css +++ b/assets/css/forgot-pass.css @@ -45,16 +45,27 @@ body { /* intro to page */ - - .bookworms { + .bookworms{ display: flex; - flex-direction: column; - /* margin-top: 120px; */ + margin-top:120px; margin-left: 50px; margin-bottom: 40px; align-items: center; + } + + +@media (max-width: 600px) { + .bookworms { + display: flex; + flex-direction: column; + /* margin-top: 120px; */ + margin-left: 50px; + margin-bottom: 40px; + align-items: center; + } } + .bookworm{ font-family: var(--ff-philosopher); color: rgb(247, 150, 150); From 0d1e67b05c899c26293dcc67ad262b53bbd618b2 Mon Sep 17 00:00:00 2001 From: Jayraj Date: Tue, 4 Jun 2024 17:28:22 +0530 Subject: [PATCH 27/44] Adjust --- assets/css/aboutus.css | 45 +++++++++++++++++++++++++++++++++++++++++- 1 file changed, 44 insertions(+), 1 deletion(-) diff --git a/assets/css/aboutus.css b/assets/css/aboutus.css index ad8e1e3ee..eddad807b 100644 --- a/assets/css/aboutus.css +++ b/assets/css/aboutus.css @@ -161,4 +161,47 @@ h1, h2, h3 { .navbar-item.dropdown:hover .dropdown-arrow { transform: rotate(180deg); - } \ No newline at end of file + } + /* Media Query for Mobile Devices */ +@media (max-width: 600px) { + .container { + padding: 10px; + } + + header { + padding: 15px; + margin-bottom: 20px; + } + + .stats { + flex-direction: column; + align-items: center; + } + + .stat { + margin-bottom: 20px; + } + + .team-cards { + flex-direction: column; + align-items: center; + } + + .team-member { + max-width: 100%; + margin-bottom: 20px; + } + + .navbar-link { + padding: 6px 8px; + } + + .dropdown-menu-item { + padding: 10px 14px; + } + + .dropdown-menu { + top: auto; + position: relative; + } +} \ No newline at end of file From de6332722ebdb0e5e824e99c9c1564fe5227ca99 Mon Sep 17 00:00:00 2001 From: Jayraj Date: Tue, 4 Jun 2024 17:30:34 +0530 Subject: [PATCH 28/44] v --- assets/css/aboutus.css | 44 +----------------------------------------- 1 file changed, 1 insertion(+), 43 deletions(-) diff --git a/assets/css/aboutus.css b/assets/css/aboutus.css index eddad807b..088544d09 100644 --- a/assets/css/aboutus.css +++ b/assets/css/aboutus.css @@ -162,46 +162,4 @@ h1, h2, h3 { .navbar-item.dropdown:hover .dropdown-arrow { transform: rotate(180deg); } - /* Media Query for Mobile Devices */ -@media (max-width: 600px) { - .container { - padding: 10px; - } - - header { - padding: 15px; - margin-bottom: 20px; - } - - .stats { - flex-direction: column; - align-items: center; - } - - .stat { - margin-bottom: 20px; - } - - .team-cards { - flex-direction: column; - align-items: center; - } - - .team-member { - max-width: 100%; - margin-bottom: 20px; - } - - .navbar-link { - padding: 6px 8px; - } - - .dropdown-menu-item { - padding: 10px 14px; - } - - .dropdown-menu { - top: auto; - position: relative; - } -} \ No newline at end of file + \ No newline at end of file From 828e9774c036e33fb93f117186292359999da719 Mon Sep 17 00:00:00 2001 From: Jayraj Date: Tue, 4 Jun 2024 17:33:33 +0530 Subject: [PATCH 29/44] . --- assets/css/aboutus.css | 44 +++++++++++++++++++++++++++++++++++++++++- 1 file changed, 43 insertions(+), 1 deletion(-) diff --git a/assets/css/aboutus.css b/assets/css/aboutus.css index 088544d09..eddad807b 100644 --- a/assets/css/aboutus.css +++ b/assets/css/aboutus.css @@ -162,4 +162,46 @@ h1, h2, h3 { .navbar-item.dropdown:hover .dropdown-arrow { transform: rotate(180deg); } - \ No newline at end of file + /* Media Query for Mobile Devices */ +@media (max-width: 600px) { + .container { + padding: 10px; + } + + header { + padding: 15px; + margin-bottom: 20px; + } + + .stats { + flex-direction: column; + align-items: center; + } + + .stat { + margin-bottom: 20px; + } + + .team-cards { + flex-direction: column; + align-items: center; + } + + .team-member { + max-width: 100%; + margin-bottom: 20px; + } + + .navbar-link { + padding: 6px 8px; + } + + .dropdown-menu-item { + padding: 10px 14px; + } + + .dropdown-menu { + top: auto; + position: relative; + } +} \ No newline at end of file From 0052258392058aed08065b6b3b770e2cd64bce9d Mon Sep 17 00:00:00 2001 From: Bhavy_Zala Date: Tue, 4 Jun 2024 17:59:25 +0530 Subject: [PATCH 30/44] Map margin-bottom added --- index.html | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index c05982880..b83cb4dab 100644 --- a/index.html +++ b/index.html @@ -1250,8 +1250,10 @@

    + src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3686.5834653201455!2d88.40974607348684!3d22.482281936278092!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3a0273c5411d60d7%3A0x5d6e57763593194b!2sSouthern%20Cleve%20Housing%2C%2012%2C%20Bhagat%20Singh%20Nagar%2C%20Nayabad%2C%20Kolkata%2C%20West%20Bengal%20700150!5e0!3m2!1sen!2sin!4v1716043813992!5m2!1sen!2sin" + style="border:0; margin-bottom:30px;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"> + +

    From 4174a8bdb32d7ada3988c44bbad0ae23dd7ab56f Mon Sep 17 00:00:00 2001 From: sau-mili <146661411+sau-mili@users.noreply.github.com> Date: Tue, 4 Jun 2024 18:52:59 +0530 Subject: [PATCH 31/44] footer updated --- index.html | 24 +++++++++++++++++++----- 1 file changed, 19 insertions(+), 5 deletions(-) diff --git a/index.html b/index.html index c05982880..0aa0eb9fd 100644 --- a/index.html +++ b/index.html @@ -1546,7 +1546,7 @@

    How do I ensure the safety and security of my personal information on SwapRe "https://translate.google.com/translate_a/element.js? cb=googleTranslateElementInit"> - +
    @@ -1682,13 +1682,14 @@

    Quick Links

    - + +
    +

    + © + All Rights Reserved. Made with ❤ by Guardian + Hackers. +

    + +
    + + + @@ -30,141 +31,132 @@ Login / SignUp -
    - -
    + + +
    +
    + +

    Rate Us

    +
    +

    How was your experience?

    + + + + + +

    0 of 5

    +
    + +

    Thank you for rating us!

    +
    +
    + +
    + +
    -
    + + +
    -
  • - - + +
    + + +
    - + - - - - -

    0 of 5

    - - -

    Thank you for rating us!

    - - + + + +

    Welcome to SwapReads

    @@ -185,30 +177,25 @@

    Join us by creating an account or log in if you already have an account.

    -
    +

    Forgot Password? - Reset Here -

    - + Reset Here +

    Or
    - - + - + - + @@ -307,9 +294,6 @@

    Quick Links

    color: #ff0001; /* Change to YouTube color on hover */ } - .forget-password { - text-align: center; - }
    @@ -357,16 +341,30 @@

    Quick Links

    --> - - \ No newline at end of file + From 6e0b0cfbf465c5df85ea20cac90c1a339f430920 Mon Sep 17 00:00:00 2001 From: Abhigna Arsam <125258286+Abhigna-arsam@users.noreply.github.com> Date: Tue, 4 Jun 2024 22:03:59 +0530 Subject: [PATCH 36/44] Update index.html --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 937ec893e..a04706619 100644 --- a/index.html +++ b/index.html @@ -422,7 +422,7 @@
    - +