create_album.view 615 B

1234567891011121314151617
  1. @Title{Gallery}@
  2. @ButtonsRight{
  3. <button onclick="Navigate('/gallery/manage/')" title="Manage">
  4. <img src="/images/gallery.svg" alt="Manage" />
  5. </button><br/>
  6. <button type="submit" form="albumForm" title="Save">
  7. <img src="/images/save.svg" alt="Save" />
  8. </button>
  9. }@
  10. @Body{
  11. <h3>Title</h3>
  12. <form action="" method="post" id="albumForm">
  13. <input name="title" style="width:100%" value="<?= htmlspecialchars($album->AlbumTitle) ?>" />
  14. <h3>Description</h3>
  15. <textarea name="description" style="width:100%; height:100px" ><?= htmlspecialchars($album->AlbumDescription) ?></textarea>
  16. </form>
  17. }@