Use description when creating a new album.
[Sone.git] / src / main / resources / templates / include / createAlbum.html
1 <h2><%= View.CreateAlbum.Title|l10n|html></h2>
2
3 <form id="create-album" method="post" action="createAlbum.html">
4         <input type="hidden" name="formPassword" value="<% formPassword|html>" />
5         <input type="hidden" name="parent" value="<%ifnull ! album><% album.id|html><%/if>" />
6         <label for="album"><%= View.CreateAlbum.Label.Name|l10n|html></label>
7         <input type="text" name="name" value="" />
8         <label for="description"><%= View.CreateAlbum.Label.Description|l10n|html></label>
9         <input type="text" name="description" value="" />
10         <button type="submit" name="uploadImage" value="1"><%= Page.ImageBrowser.CreateAlbum.Button.CreateAlbum|l10n|html></button>
11 </form>