summaryrefslogtreecommitdiffstats
path: root/templates/submit-form.tmpl
blob: 5755356ada2b5a2d6b47cbd6b535987b9355d958 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{{< base.tmpl}}

{{+ content}}
    <form action="/add" method="POST">
      <fieldset>
        <lable for="language">Language:</lable>
        <select id="language" name="language">
          <option value="plain">plain text</option>
          <option value="javascript">JavaScript</option>
          <option value="auto">auto detection</option>
        </select>

        <textarea name="content"></textarea>

        <input class="submit" type="submit" value="paste" />
      </fieldset>
    </form>
{{/ content}}