diff options
| author | Brian Cully <bjc@spork.org> | 2025-04-10 14:11:05 -0400 |
|---|---|---|
| committer | Brian Cully <bjc@spork.org> | 2025-04-10 14:11:05 -0400 |
| commit | ac29215d0e1b66030873aa016c410b281632253f (patch) | |
| tree | cf270e1fac60bdf30cb1d33b374ea4197a128655 | |
| parent | 2a3b409874831f10e0f83ddc264b532c64066c25 (diff) | |
| download | chords-ac29215d0e1b66030873aa016c410b281632253f.tar.gz chords-ac29215d0e1b66030873aa016c410b281632253f.zip | |
html: add stubs for saved chords
| -rw-r--r-- | index.html | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -93,6 +93,8 @@ </tr> </tbody> </table> + + <button class='save-chord'>+</button> </form> <form id='key-picker'> @@ -117,6 +119,8 @@ <select id='scale' name='scale'> <option value='major' selected>major</option> <option value='minor'>minor</option> + <option value='aug'>augmented</option> + <option value='dim'>diminished</option> </select> <hr> @@ -144,6 +148,16 @@ </fieldset> </form> + <form id='saved-chords'> + <fieldset> + <legend>saved</legend> + <ol> + <li>GCEGCE</li> + <li>EBEGBE</li> + </ol> + </fieldset> + </form> + <hr> <a href='https://git.spork.org/chords.git'>src</a> |
