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,29 @@
<link rel="stylesheet" href="{ROOT_URL}app/plugins/timers/css/timers.css" crossorigin="anonymous">
<script src="{ROOT_URL}app/plugins/timers/js/timers.js" type="module" defer></script>
<h1 class="text-center">Timers</h1>
<div class="container">
<h2>Timers</h2>
<div class="form-inline">
<div class="form-group">
<input type="text" id="name" class="form-control" placeholder="Name">
<input type="text" id="hours" class="form-control" placeholder="Hours">
<input type="text" id="minutes" class="form-control" placeholder="Minutes">
<input type="text" id="seconds" class="form-control" placeholder="Seconds">
<button id="addTimer" class="btn btn-primary">Add</button>
</div>
</div>
<h2>StopWatch</h2>
<div class="form-inline">
<div class="form-group">
<input type="text" id="stopwatchName" class="form-control" placeholder="Name">
<button id="addStopwatch" class="btn btn-primary">Start</button>
</div>
</div>
</div>
<div id="timers" class="" style="margin-top: 20px;" role="tablist" aria-multiselectable="true">
{timers}
</div>
<div id="stopWatches" class="" style="margin-top: 20px;" role="tablist" aria-multiselectable="true">
{stopWatches}
</div>

View File

@ -0,0 +1,15 @@
{LOOP}
<div class="stopwatch-row">
<span class="timer-name">{name}</span>
<span class="timer-current">{currentSeconds}</span>
<span class="timer-paused">{pausedAt}</span>
<span class="timer-hours">{hours}</span>
<span class="timer-minutes">{minutes}</span>
<span class="timer-seconds">{seconds}</span>
<span class="timer-id">{ID}</span>
<span class="timer-created">{DTC}{createdAt}{/DTC}</span>
</div>
{/LOOP}
{ALT}
<span class=""></span>
{/ALT}

View File

@ -0,0 +1,15 @@
{LOOP}
<div class="timer-row">
<span class="timer-name">{name}</span>
<span class="timer-current">{currentSeconds}</span>
<span class="timer-paused">{pausedAt}</span>
<span class="timer-hours">{hours}</span>
<span class="timer-minutes">{minutes}</span>
<span class="timer-seconds">{seconds}</span>
<span class="timer-id">{ID}</span>
<span class="timer-created">{DTC}{createdAt}{/DTC}</span>
</div>
{/LOOP}
{ALT}
<span class=""></span>
{/ALT}