compose-form.html 804 B

123456789101112131415
  1. <form class="compose" hx-post="/twitter/tweets/create?me={{ me }}" hx-swap="outerHTML">
  2. <h2>Compose</h2>
  3. <ul>
  4. <li><textarea name="text" placeholder="Only the finest..." style="width: 100%" onchange="this.onkeyup()" onkeyup="this.form.querySelector('.compose-length').innerHTML = this.value.length" rows="6" cols="30"></textarea>
  5. <li><p class="compose-length w-100" style="text-align: right">0</p>
  6. <li><input type="text" name="reply_to_tweet_id" placeholder="Reply to Tweet ID" style="width: 100%">
  7. <li><input type="text" name="quote_tweet_id" placeholder="Quote Tweet ID" style="width: 100%">
  8. <li><button type="submit" style="margin-top: 0.33em">Post</button>
  9. </ul>
  10. </form>
  11. {% if new_tweet_id %}
  12. <div class="flash">
  13. Tweet posted. <a href="/tweet/{{ new_tweet_id }}.html">View</a>.
  14. </div>
  15. {% endif %}