Initial commit
This commit is contained in:
27
app/plugins/dashboards/views/index.html
Normal file
27
app/plugins/dashboards/views/index.html
Normal 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>
|
Reference in New Issue
Block a user