diff options
author | zlg <zlg@zlg.space> | 2025-08-28 00:04:51 -0700 |
---|---|---|
committer | zlg <zlg@zlg.space> | 2025-08-28 00:04:51 -0700 |
commit | 135ec50a7700335332578edbe2cb8434f848d290 (patch) | |
tree | 63448c5b9afd2103fe1130cf131ca2e67dbef0f7 /make_timer.html | |
parent | timer.html: Fix malformed HTML (diff) | |
download | zsst-135ec50a7700335332578edbe2cb8434f848d290.tar.gz zsst-135ec50a7700335332578edbe2cb8434f848d290.tar.bz2 zsst-135ec50a7700335332578edbe2cb8434f848d290.tar.xz zsst-135ec50a7700335332578edbe2cb8434f848d290.zip |
Add 'labeled_bar' style
This style is similar to the Persona 5-inspired style, but isn't as
purpose-built.
Diffstat (limited to 'make_timer.html')
-rw-r--r-- | make_timer.html | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/make_timer.html b/make_timer.html index 173b884..bfa7098 100644 --- a/make_timer.html +++ b/make_timer.html @@ -22,6 +22,7 @@ <label for="cdstyle">Countdown Style</label> <input type="radio" id="cdstyle" name="cdstyle" value="standard">Standard Countdown</input> <input type="radio" id="cdstyle" name="cdstyle" value="bar">Progress Bar</input> + <input type="radio" id="cdstyle" name="cdstyle" value="labeled_bar">Labeled Bar</input> <input type="radio" id="cdstyle" name="cdstyle" value="p5">Persona 5</input> </section> <section> @@ -29,6 +30,10 @@ <input name="duration" type="number" id="duration" min="10" value="60" required> </section> <section> + <label for="label_text">Text to Display Above Countdown (used in Labeled Bar)</label> + <input name="label_text" type="text" id="end_text"> + </section> + <section> <label for="end_text">Text to Display at End of Countdown</label> <input name="end_text" type="text" id="end_text"> </section> |