Make it possible for the user to specify the document name of the SSK.
[Sone.git] / src / main / resources / templates / createSone.html
1 <%include include/head.html>
2
3         <h1><%= Page.Login.CreateSone.Title|l10n|html></h1>
4         <div><%= Page.Login.CreateSone.Description|l10n|html></div>
5
6         <form action="createSone.html" method="post">
7                 <input type="hidden" name="formPassword" value="<% formPassword|html>" />
8                 <div<%if errorName> class="error"<%/if>>
9                         <label for="name"><%= Page.Login.CreateSone.Label.Name|l10n|html></label>
10                         <input type="text" name="name" value="<% name|html>"/>
11                 </div>
12                 <div>
13                         <label for="document-name"><%= Page.Login.CreateSone.Label.DocumentName|l10n|html></label>
14                         <input type="text" name="document-name" value="<% documentName|html>" />
15                 </div>
16                 <div<%if errorUri> class="error"<%/if>>
17                         <label for="insert-uri"><%= Page.Login.CreateSone.Label.RequestURI|l10n|html></label>
18                         <input type="text" name="insert-uri" value="<% insertUri|html>" />
19                 </div>
20                 <div<%if errorUri> class="error"<%/if>>
21                         <label for="insert-uri"><%= Page.Login.CreateSone.Label.InsertURI|l10n|html></label>
22                         <input type="text" name="insert-uri" value="<% requestUri|html>" />
23                 </div>
24                 <div>
25                         <button type="submit" name="create-from-uri" value="1"><%= Page.Login.CreateSone.Button.CreateFromURI|l10n|html></button>
26                 </div>
27                 <div>
28                         <button type="submit" name="create-random" value="1"><%= Page.Login.CreateSone.Button.CreateRandom|l10n|html></button>
29                 </div>
30         </form>
31
32 <%include include/tail.html>