aboutsummaryrefslogtreecommitdiff
path: root/templates/post.html.hbs
blob: 37c5ec61529626a300151a69512472986967a8d6 (plain) (blame)
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
30
31
32
33
34
35
{{> header }}

<form action="/api/v1/post" method="post">
    <table>
        <tr>
            <td>name</td>
            <td>
                <input name="name" type="text" placeholder="blank 4 `anonymous'">
                <input type="submit" value="post">
            </td>
        </tr>

        <tr>
            <td>comment</td>
            <td>
                <textarea name="comment" cols="48" rows="4"
                    wrap="soft" placeholder="comment" required></textarea>
            </td>
        </tr>

        <tr>
            <td>verification</td>
            <td>
                <input type="checkbox" disabled> i'm not a robot
            </td>
        </tr>

        <tr>
            <td>file</td>
            <td>
                <input type="file" disabled>
            </td>
        </tr>
    </table>
</form>