aboutsummaryrefslogtreecommitdiff
path: root/src/templates/submit_song_new.html
blob: 29d7529d3f6ad0416ddc18ea95c24bcd5f1001ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!doctype html>
<html>
  <head>
    <title>Submit a new song</title>
  </head>
  <body>
    <h1>Submit a new song</h1>
    <p>Tell us about the song (all fields required):</p>
    <form action="/submit_song" method="post">
      <table>
        <tr>
          <td>Title:</td>
          <td><input type="text" name="title" value="{{title}}"></td>
        </tr>
        <tr>
          <td>Artist:</td>
          <td><input type="text" name="artist" value="{{artist}}"></td>
        </tr>
        <tr>
          <td>Phrase:</td>
          <td><input type="text" name="phrase" value="{{phrase}}"></td>
        </tr>
        <tr>
          <td colspan="2"><input type="submit" value="Win at life"></td>
        </tr>
      </table>
    </form>
  </body>
</html>