Added proper support for font size and color
[GitHub/WoltLab/WCF.git] / com.woltlab.wcf / templates / emailActivation.tpl
CommitLineData
320f4a6d
MW
1{include file='header'}
2
e7b063d6 3{include file='formError'}
320f4a6d
MW
4
5<form method="post" action="{link controller='EmailActivation'}{/link}">
95961bdf
MW
6 <div class="section">
7 <dl{if $errorField == 'u'} class="formError"{/if}>
8 <dt><label for="userID">{lang}wcf.user.userID{/lang}</label></dt>
9 <dd>
10 <input type="text" id="userID" name="u" value="{@$u}" required="required" class="medium" />
11 {if $errorField == 'u'}
12 <small class="innerError">
13 {if $errorType == 'notValid'}{lang}wcf.user.userID.error.invalid{/lang}{/if}
14 </small>
15 {/if}
16 </dd>
17 </dl>
320f4a6d 18
95961bdf
MW
19 <dl{if $errorField == 'a'} class="formError"{/if}>
20 <dt><label for="activationCode">{lang}wcf.user.activationCode{/lang}</label></dt>
21 <dd>
22 <input type="text" id="activationCode" maxlength="9" name="a" value="{@$a}" required="required" class="medium" />
23 {if $errorField == 'a'}
24 <small class="innerError">
25 {if $errorType == 'notValid'}{lang}wcf.user.activationCode.error.notValid{/lang}{/if}
26 </small>
27 {/if}
28 <small><a href="{link controller='EmailNewActivationCode'}{/link}">{lang}wcf.user.newActivationCode{/lang}</a></small>
29 </dd>
30 </dl>
31
32 {event name='fields'}
320f4a6d
MW
33 </div>
34
95961bdf
MW
35 {event name='sections'}
36
320f4a6d
MW
37 <div class="formSubmit">
38 <input type="submit" value="{lang}wcf.global.button.submit{/lang}" accesskey="s" />
ee629b22 39 {@SECURITY_TOKEN_INPUT_TAG}
320f4a6d
MW
40 </div>
41</form>
42
43{include file='footer'}