compose-form.html 906 B

12345678910111213141516171819
  1. <form class="compose" hx-post="{{ url_for('.post_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. {% if new_tweet_id %}
  11. <script>
  12. Toast.fire({
  13. icon: 'success',
  14. title: 'Tweet was sent; <a style="text-align: right" href="{{ url_for('.get_tweet_html', tweet_id=new_tweet_id) }}">View</a>.'
  15. });
  16. </script>
  17. {% endif %}
  18. </form>