adf0af22e76cd092f28ed5a4ac771aae67d71640
[tt-rss-micropub.git] / commentform.phtml
1 <div class="form">
2  <h2>Reply to this post</h2>
3  <form method="post" action="backend.php">
4   <input type="hidden" name="op" value="pluginhandler"/>
5   <input type="hidden" name="plugin" value="micropub"/>
6   <input type="hidden" name="method" value="action"/>
7   <input type="hidden" name="mode"   value="post"/>
8
9   <input type="hidden" name="replyTo" value="<?= htmlspecialchars($article['link']) ?>"/>
10
11   <?php if (count($accounts) == 1) { ?>
12    <input type="hidden" name="me" value="<?= htmlspecialchars(reset($accounts)) ?>"/>
13   <?php } else { ?>
14    <label for="micropub-me">Identity:</label>
15    <select id="micropub-me" name="me" size="1">
16     <?php foreach ($accounts as $url) { ?>
17      <option value="<?= htmlspecialchars($url) ?>"><?= htmlspecialchars($url) ?></option>
18     <?php } ?>
19    </select><br/>
20   <?php } ?>
21
22   <textarea name="content" rows="4" cols="60" width="100%" class="dijitTextArea"></textarea><br/>
23   <button type="submit">Post comment</button>
24  </form>
25 </div>
26
27 <div class="reply" style="text-align: right">
28  or 
29  <a href="<?= htmlspecialchars($quillUrl) ?>" class="mpbutton dijitButton" target="_blank">
30   Reply with Quill
31  </a>
32 </div>