Files
thetempusproject/app/plugins/dashboards/views/index.html
2024-08-04 21:15:59 -04:00

27 lines
732 B
HTML

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>