1
0
mirror of https://github.com/elisspace/AskAssist.git synced 2026-08-29 15:33:47 +00:00

add component loading

This commit is contained in:
Jeremy Dixon
2021-01-18 14:17:18 -06:00
parent bb8eb56eb5
commit a799f5bd2f
6 changed files with 85 additions and 43 deletions

17
components/options.html Normal file
View File

@@ -0,0 +1,17 @@
<div id='options-container'>
<label for="refresh-frequency">Refresh every</label>
<input class="ask-option" type="text" id="refresh-frequency" name="refresh-frequency">
<p>seconds</p>
<br>
<label for="alert-frequency">Alert with</label>
<select class="ask-option" id="alert-sound" name="alert-sound">
<option dataVal = "1">Alert One</option>
<option dataVal = "2">Alert Two</option>
<option dataVal = "3">Alert Three</option>
<option dataVal = "4">Alert Four</option>
</select>
<p>every </p>
<input class="ask-option" type="text" id="alert-frequency" name="alert-frequency">
<p>seconds </p>
</div>

6
components/toolbar.html Normal file
View File

@@ -0,0 +1,6 @@
<div id='ask-assist'>
<link rel="stylesheet" href="https://icono-49d6.kxcdn.com/icono.min.css">
<p id="settings-button" ></p>
<div class='cusBut' id='start-timer'>AskAssist</div>
<div class='cusBut' id='stop-timer'>Stop Watching</div>
</div>