Changed position of language chooser in desktop mode
[GitHub/WoltLab/WCF.git] / com.woltlab.wcf / templates / emailActivation.tpl
1 {include file='documentHeader'}
2
3 <head>
4 <title>{lang}wcf.user.emailActivation{/lang} - {PAGE_TITLE|language}</title>
5
6 {include file='headInclude'}
7 </head>
8
9 <body id="tpl{$templateName|ucfirst}" data-template="{$templateName}" data-application="{$templateNameApplication}">
10
11 {include file='header'}
12
13 <header class="boxHeadline">
14 <h1>{lang}wcf.user.emailActivation{/lang}</h1>
15 </header>
16
17 {include file='userNotice'}
18
19 {include file='formError'}
20
21 <div class="contentNavigation">
22 {hascontent}
23 <nav>
24 <ul>
25 {content}
26 {event name='contentNavigationButtons'}
27 {/content}
28 </ul>
29 </nav>
30 {/hascontent}
31 </div>
32
33 <form method="post" action="{link controller='EmailActivation'}{/link}">
34 <div class="container containerPadding marginTop">
35 <fieldset>
36 <legend><label for="userID">{lang}wcf.user.emailActivation{/lang}</label></legend>
37
38 <dl{if $errorField == 'u'} class="formError"{/if}>
39 <dt><label for="userID">{lang}wcf.user.userID{/lang}</label></dt>
40 <dd>
41 <input type="text" id="userID" name="u" value="{@$u}" required="required" class="medium" />
42 {if $errorField == 'u'}
43 <small class="innerError">
44 {if $errorType == 'notValid'}{lang}wcf.user.userID.error.invalid{/lang}{/if}
45 </small>
46 {/if}
47 </dd>
48 </dl>
49
50 <dl{if $errorField == 'a'} class="formError"{/if}>
51 <dt><label for="activationCode">{lang}wcf.user.activationCode{/lang}</label></dt>
52 <dd>
53 <input type="text" id="activationCode" maxlength="9" name="a" value="{@$a}" required="required" class="medium" />
54 {if $errorField == 'a'}
55 <small class="innerError">
56 {if $errorType == 'notValid'}{lang}wcf.user.activationCode.error.notValid{/lang}{/if}
57 </small>
58 {/if}
59 <small><a href="{link controller='EmailNewActivationCode'}{/link}">{lang}wcf.user.newActivationCode{/lang}</a></small>
60 </dd>
61 </dl>
62
63 {event name='fields'}
64 </fieldset>
65
66 {event name='fieldsets'}
67 </div>
68
69 <div class="formSubmit">
70 <input type="submit" value="{lang}wcf.global.button.submit{/lang}" accesskey="s" />
71 {@SECURITY_TOKEN_INPUT_TAG}
72 </div>
73 </form>
74
75 {include file='footer'}
76
77 </body>
78 </html>