-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
110 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Document</title> | ||
</head> | ||
<body> | ||
<h1>Excuse our mess...</h1> | ||
<p>The site is currently down!</p> | ||
<!-- please dont add CSS, its only temp and will never be used again --> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>FreakySearch</title> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<meta name="description" content="FreakySearch - A simple browser inside a browser"> | ||
<meta content="FreakySearch" property="og:title" /> | ||
<meta content="A simple 'browser inside a browser'! It has many features like searching, weather and much more!" property="og:description" /> | ||
<meta content="Placeholder" property="og:image" /> | ||
<meta content="#006b79" data-react-helmet="true" name="theme-color" /> | ||
<link rel="icon" type="image/x-icon" href="images/ico/logo.ico"> | ||
<link rel="stylesheet" href="css/index.css"> | ||
</head> | ||
<body onload="getUsername()"> | ||
<div class="menu"> | ||
<div id="username"> | ||
Hello, <span id="user-name"></span>! | ||
</div> | ||
<div class="line"></div> | ||
<a href="https://videos.freakybob.site" class="textnavbar">Videos</a> | ||
<a href="https://blog.freakybob.site" class="textnavbar">Blog</a> | ||
<a href="https://github.com/Freakybob-Team" class="textnavbar">GitHub</a> | ||
<div id="clock" class="clock"></div> | ||
</div> | ||
|
||
<div class="overlay"></div> | ||
<div class="top-overlay"></div> | ||
|
||
|
||
<div id="weather-modal" class="modal"> | ||
<h1>FreakyWeather</h1> | ||
<input type="text" id="locationInput" placeholder="Enter a city, state (e.g., Los Angeles, CA)"> | ||
<button id="searchButton">Search</button> | ||
<button id="geoButton">Use My Location</button> | ||
<p id="weathercredit">We use <a href="https://openweathermap.org/">https://openweathermap.org/</a> to provide this service.</p> | ||
<div class="weather-info"> | ||
<img id="weatherIcon" class="weather-icon" src="" alt="Weather Icon" style="display: none;"> | ||
<h2 id="location"></h2> | ||
<p id="temperature"></p> | ||
<p id="description"></p> | ||
<p id="humidity"></p> | ||
<p id="wind"></p> | ||
<p id="errorMessage" class="error"></p> | ||
<p id="loading" class="loading">Loading...</p> | ||
<button class="close-btn">Close</button> | ||
</div> | ||
|
||
</div> | ||
|
||
|
||
<div id="credits-modal" class="modal"> | ||
<h2>Credits</h2> | ||
<p>Background image: scblurr on Wallpapers.com</p> | ||
<p>squirrel</p> | ||
<button class="close-btn">Close</button> | ||
</div> | ||
|
||
|
||
<div id="about-modal" class="modal"> | ||
<h2>About</h2> | ||
<p>FreakySearch 1.8</p> | ||
<p>Last revision date: December 5th, 2024</p> | ||
<br> | ||
<h2>Configurations</h2> | ||
<button id="change-name-button">Change username</button> | ||
<div id="change-name-input" style="display: none;"> | ||
<input type="text" id="new-username" placeholder="Enter your name"> | ||
</div> | ||
<button class="close-btn">Close</button> | ||
</div> | ||
|
||
|
||
<img src="logo.svg" alt="get a better browser dummy" id="logo"> | ||
<!-- please dont try to selfhost the searchbar --> | ||
<script async src="https://cse.google.com/cse.js?cx=91650286aa42a4a77"> | ||
</script> | ||
<div class="gcse-search"></div> | ||
|
||
<div class="options"> | ||
<a href="#weather" class="weathera">Weather</a> | ||
<a href="#credits" class="creditsa">Credits</a> | ||
<a href="#about" class="abouta">About</a> | ||
</div> | ||
|
||
<div class="button-container"> | ||
<button id="prev-button">⇐</button> | ||
<button id="next-button">⇒</button> | ||
</div> | ||
<p class="privacy"><a href="privacy">Privacy Policy</a></p> | ||
<script src="js/index.js"></script> | ||
<!--I absulutly cooked at the weather stuff. Everyone should now gibe me a cookie cause I am fatass! -Squirrel--> | ||
<!-- here, take it! 🍪 - wish--> | ||
<!-- you misspelled absolutely, anyway heres your cookie 🍪 --> | ||
</body> | ||
</html> |