diff options
Diffstat (limited to 'settings.html')
| -rwxr-xr-x | settings.html | 100 |
1 files changed, 0 insertions, 100 deletions
diff --git a/settings.html b/settings.html deleted file mode 100755 index 70fa589..0000000 --- a/settings.html +++ /dev/null @@ -1,100 +0,0 @@ -<!DOCTYPE html> -<html lang="en"> - <head> - <meta charset="UTF-8"> - <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <meta http-equiv="X-UA-Compatible" content="ie=edge"> - <meta name="description" content="This is the personal website for the real Jacob McDonnell. Feel free to look around, you might find something interesting."/> - <meta name="author" content="Jacob McDonnell"/> - <meta name="keywords" content="Jacob,McDonnell,Jacob McDonnell"/> - <title>Settings</title> - <link id="cssFile" href="CSS/main.css" rel="stylesheet" type="text/css"> - <script src="JS/main.js"></script> - <script src="JS/cookies.js"></script> - <script src="JS/command.js"></script> - </head> - <body onkeydown="keyCode(event)" onload=" checkCookie()"> - <aside id="NavBar"> - <img src="images\menu.svg" id="menuicon" class="menuimg"> - <nav> - <ul id="menuLinks"> - <p id="menuX" class="MenuX">X</p> - <li><a href="https://jacobmcdonnell.com/">Home</a></li> - <li><button onclick="dropdown('pages')" class="dropbtn">Pages</button> - <div id="pages" class="dropdown-content"> - <a href="https://jacobmcdonnell.com/">Home</a> - <a href="https://jacobmcdonnell.com/morsecode/">Morse code</a> - <a href="https://jacobmcdonnell.com/binary/" id="pLink">Binary</a> - <a href="https://jacobmcdonnell.com/Pacman/" id="pLinks">Google Pacman</a> - <a href="https://jacobmcdonnell.com/settings.html">Settings and Information</a> - <a href="https://jacobmcdonnell.com/extensions.html">Chrome Extensions</a> - </div></li> - <li><a href="https://duckduckgo.com/">DuckDuckGo</a></li> - <li><button onclick="dropdown('gsites')" class="dropbtn">Google Sites</button> - <div id="gsites" class="dropdown-content"> - <a href="https://mail.google.com/mail/?tab=wm&authuser=0&ogbl">Gmail</a> - <a href="https://play.google.com/music/listen?authuser&u=0#/home">Google Play Music</a> - <a href="https://photos.google.com/">Google Photos</a> - <a href="https://domains.google.com/m/registrar/">Google Domains</a> - <a href="https://drive.google.com/drive/u/0/my-drive">Google Drive</a> - - </div></li> - <li><a href="https://www.youtube.com">Youtube</a></li> - <li><button onclick="dropdown('gitSites')" class="dropbtn">Git Sites</button> - <div id="gitSites" class="dropdown-content"> - <a href="https://www.github.com/">Github</a> - <a href="https://gitlab.com/">GitLab</a> - </div></li> - <li><a href="https://www.twitch.tv/">Twitch</a></li> - <li><a href="http://www.w3schools.com/html/default.asp">html tutorial</a></li> - </ul> - </nav> - </aside> - <main> - <center><h1>Settings and Information Page</h1></center> - <form id="themeForm"> - <h2>Theme</h2> - <select name="themes"> - <option value="GreenAndWhite">Green and White</option> - <option value="GreenAndDark">Green and Dark</option> - <option value="PurpleAndWhite">Purple and White</option> - <option value="PurpleAndDark">Purple and Dark</option> - </select><br><br> - <input type="submit"> - </form> - <h2>About <a href="https://jacobmcdonnell.com/">JacobMcDonnell.com</a></h2> - <p>This is the personal website for the <strong>real</strong> Jacob McDonnell. Eventually this will switch to infomation about the <strong>real</strong> Jacob McDonnell. This website was designed and programmed by the <strong>real</strong> Jacob McDonnell.</p> - <h2>Cookie Policy</h2> - <p><a href="https://jacobmcdonnell.com/">JacobMcDonnell.com</a> uses <strong>ONE</strong> cookie to allow for the theme of the website to stay the same. The information stored in the cookie is the name of cookie, which is theme, the value of the cookie, which is the name of the theme, and is set to expire 365 days after the last vist of the site. The source code of the cookie can be found at <a href="https://jacobmcdonnell.com/JS/cookies.js" target="_blank">here</a>. There are <strong>ZERO</strong> third party cookies used with this site.</p> - <h2>Privacy Policy</h2> - <p><a href="https://jacobmcdonnell.com/">JacobMcDonnell.com</a> collects <strong>ZERO</strong> information from visitors of the website. The Source code for the website can be found at <a href="https://github.com/JacobMcDonnell/JacobMcDonnell.github.io" target="_blank">here</a>. However, <a href="https://jacobmcdonnell.com/">JacobMcDonnell.com</a> is hosted on github pages and is not responible for any of the information collected by them if any.</p> - <h2>Jacob's Chrome Extension Grabber</h2> - <p>Jacob's Chrome Extension Grabber uses basic javascript to get the ids of extensions and combine them with a link to allow for downloading an extension from the chrome web store. All source code is available on gitlab and github and the javascript used is at the bottom of the file.</p> - <script> - const myForm = document.getElementById("themeForm"); - myForm.addEventListener("submit", (e) => { - var formData = new FormData(myForm); - e.preventDefault(); - for(var value of formData.values()){ - console.log(value); - setCookie("theme", value, 365); - checkCookie(); - } - }); - (function() { - var menu = document.querySelector('ul'), - menulink = document.getElementById('menuicon'), - menuclose = document.getElementById('menuX'); - menulink.addEventListener('click', function(e) { - menu.classList.toggle('active'); - e.preventDefault(); - }); - menuX.addEventListener('click', function(e) { - menu.classList.toggle('active'); - e.preventDefault(); - }); - })(); - </script> - </main> - </body> -</html> |
