Initial commit

This commit is contained in:
Joey Kimsey
2024-08-04 21:15:59 -04:00
parent c9d1fb983f
commit 0d469501ee
695 changed files with 70184 additions and 71 deletions

View File

@ -0,0 +1,27 @@
this is the dashboard index
<h3>Google Search</h3>
<form action="https://www.google.com/search" method="GET">
<input type="text" name="q" placeholder="Search Google" required>
<button type="submit">Search</button>
</form>
<h3>Ask ChatGPT</h3>
<form onsubmit="event.preventDefault(); forwardToChatGPT();">
<textarea id="chatgptQuery" rows="10" cols="50" maxlength="4096"></textarea><br>
<button type="submit">Submit</button>
</form>
<h3>Weather Lookup</h3>
<div id="weather-widget">
<input type="text" id="zipcode" placeholder="Enter Zip Code">
<button id="lookup-btn">Lookup Weather</button>
<div id="weather-result"></div>
</div>