1 <%if !identitiesWithoutSone.empty>
2 <h1><%= Page.Login.CreateSone.Title|l10n|html></h1>
4 <p><%= View.CreateSone.Text.WotIdentityRequired|l10n|html|replace needle="{link}" replacement='<a href="/WoT/">'|replace needle="{/link}" replacement='</a>'></p>
6 <form id="create-sone" action="createSone.html" method="post">
7 <input type="hidden" name="formPassword" value="<% formPassword|html>" />
9 <%if errorNoIdentity><p><%= View.CreateSone.Text.Error.NoIdentity|l10n|html></p><%/if>
11 <%foreach identitiesWithoutSone identity>
13 <select name="identity">
14 <option disabled="disabled"><%= View.CreateSone.Select.Default|l10n|html></option>
16 <option value="<% identity.id|html>"><% identity.uniqueNickname|html></option>
19 <button type="submit"><%= View.CreateSone.Button.Create|l10n|html></button>
26 <p><%= View.CreateSone.Text.NoNonSoneIdentities|l10n|html|replace needle="{link}" replacement='<a href="/WoT/OwnIdentities">'|replace needle="{/link}" replacement="</a>"></p>
28 <p><%= View.CreateSone.Text.NoIdentities|l10n|html|replace needle="{link}" replacement='<a href="/WoT/OwnIdentities">'|replace needle="{/link}" replacement="</a>"></p>