file.tx 939 B

1234567891011
  1. <form class="Submissions" action="/post/save" method="POST">
  2. Title *<br /><input required class="cooltext" type="text" name="title" placeholder="Iowa Man Destroys Moon" value="<: $post.title :>" />
  3. File *<br /><input required class="cooltext" type="file" name="file" value="<: $post.href :>" />
  4. <!-- Need to validate file or add an upload link that kicks off WS streaming of the file at some point? TAB -->
  5. <br /> TODO: Add "alternative" links, which scrape the appropriate icon for the alt link from the favicon<br />
  6. Preview Image<br /><input type="file" class="cooltext" name="preview" placeholder="PROMO.JPG" value="<: $post.preview :>" />
  7. : include "acls.tx";
  8. Comments<br /><textarea class="cooltext" name="comment" placeholder="Potzrebie"><: $post.data :></textarea>
  9. <input type="hidden" name="app" value="file" />
  10. <input class="coolbutton" type="submit" value="Publish" text="Publish" />
  11. </form>