1234567891011121314151617 |
- @Title{Gallery}@
- @ButtonsRight{
- <button onclick="Navigate('/gallery/manage/')" title="Manage">
- <img src="/images/gallery.svg" alt="Manage" />
- </button><br/>
- <button type="submit" form="albumForm" title="Save">
- <img src="/images/save.svg" alt="Save" />
- </button>
- }@
- @Body{
- <h3>Title</h3>
- <form action="" method="post" id="albumForm">
- <input name="title" style="width:100%" value="<?= htmlspecialchars($album->AlbumTitle) ?>" />
- <h3>Description</h3>
- <textarea name="description" style="width:100%; height:100px" ><?= htmlspecialchars($album->AlbumDescription) ?></textarea>
- </form>
- }@
|