aboutsummaryrefslogtreecommitdiff
path: root/src/templates/submit_song_picklist.html
diff options
context:
space:
mode:
authorBen Burwell <ben@benburwell.com>2015-08-02 17:33:25 -0400
committerBen Burwell <ben@benburwell.com>2015-08-02 17:33:25 -0400
commit17470146704846137bf09723d403a5650208ba28 (patch)
tree798fb7c7f10282be06f85814e20ba062a9d6f635 /src/templates/submit_song_picklist.html
parent3788738f88b3aed5ced113aa4c455a0d25d8b84e (diff)
parent3d0f989cee9d7c426c759588539dd06c14fa70ea (diff)
Merge pull request #2 from benburwell/mvp
Minimum Viable Product
Diffstat (limited to 'src/templates/submit_song_picklist.html')
-rw-r--r--src/templates/submit_song_picklist.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/templates/submit_song_picklist.html b/src/templates/submit_song_picklist.html
new file mode 100644
index 0000000..b56c43f
--- /dev/null
+++ b/src/templates/submit_song_picklist.html
@@ -0,0 +1,15 @@
+<!doctype html>
+<html lang="en">
+ <head>
+ <title>Submit a song</title>
+ </head>
+ <body>
+ <h1>Did you mean one of these?</h1>
+ <ol>
+ {{#each songs}}
+ <li><a href="/add_phrase?phrase={{../phrase}}&amp;id={{song_id}}">{{title}} by {{artist_name}}</a></li>
+ {{/each}}
+ </ol>
+ <a href="/submit_song?phrase={{phrase}}&amp;title={{title}}&amp;new=1">Nope, it's none of these</a>
+ </body>
+</html>