root/branches/boomer/tmpl/comment/register.tmpl @ 1101

Revision 1101, 3.8 kB (checked in by hachi, 2 years ago)

Merging release-21 to boomer branch: svn merge -r63672:66551 http://svn.sixapart.com/repos/eng/movabletype/branches/release-21 .

  • Property svn:keywords set to Author Date Id Revision
Line 
1<mt:setvarblock name="page_title"><__trans phrase="Create an account"></mt:setvarblock>
2<mt:include name="../cms/include/chromeless_header.tmpl">
3
4<mt:if name="error">
5    <mtapp:statusmsg
6        id="generic-error"
7        class="error">
8        <mt:var name="error">
9    </mtapp:statusmsg>
10</mt:if>
11
12<form method="post" action="<mt:var name="script_url">">
13<input type="hidden" name="__mode" value="do_register" />
14<input type="hidden" name="blog_id" value="<mt:var name="blog_id" escape="html">" />
15<input type="hidden" name="entry_id" value="<mt:var name="entry_id" escape="html">" />
16<input type="hidden" name="static" value="<mt:var name="static" escape="html">" />
17<input type="hidden" name="token" value="<mt:var name="token" escape="html">" />
18<mt:if name="nosignup"><input type="hidden" name="nosignup" value="<mt:var name="nosignup" escape="html">" /></mt:if>
19
20<mt:unless name="nosignup">
21    <mtapp:setting
22        id="email"
23        label="<__trans phrase="Email Address">"
24        label_class="top-label"
25        required="1"
26        hint="<__trans phrase="Your email address.">">
27        <span name="email" id="email"><mt:var name="email" escape="html"></span>
28        <input type="hidden" name="email" value="<mt:var name="email" escape="html">" />
29    </mtapp:setting>
30</mt:unless>
31    <mtapp:setting
32        id="name"
33        label="<__trans phrase="Username">"
34        label_class="top-label"
35        required="1"
36        hint="<__trans phrase="Your login name.">">
37        <input type="text" name="name" id="name" class="ti" />
38    </mtapp:setting>
39    <mtapp:setting
40        id="nickname"
41        label="<__trans phrase="Display Name">"
42        label_class="top-label"
43        required="1"
44        hint="<__trans phrase="The name appears on your comment.">">
45        <input type="text" name="nickname" id="nickname" class="ti" />
46    </mtapp:setting>
47<mt:if name="nosignup">
48    <mtapp:setting
49        id="email"
50        label="<__trans phrase="Email Address">"
51        label_class="top-label"
52        required="1"
53        hint="<__trans phrase="Your email address.">">
54    <input type="text" name="email" id="email" class="ti" />
55    </mtapp:setting>
56</mt:if>
57    <mtapp:setting
58        id="password"
59        label="<__trans phrase="Password">"
60        label_class="top-label"
61        required="1"
62        hint="<__trans phrase="Select a password for yourself.">">
63        <input type="password" name="password" id="password" class="pw" value="" />
64    </mtapp:setting>
65    <mtapp:setting
66        id="pass_verify"
67        label="<__trans phrase="Confirm Password">"
68        label_class="top-label"
69        required="1"
70        hint="<__trans phrase="Repeat the password for confirmation.">">
71        <input type="password" name="pass_verify" id="pass_verify" class="pw" value="" />
72    </mtapp:setting>
73    <mtapp:setting
74        id="hint"
75        label="<__trans phrase="Password recovery word/phrase">"
76        label_class="top-label"
77        required="1"
78        hint="<__trans phrase="This word or phrase will be required to recover the password if you forget it.">">
79        <input type="text" name="hint" id="hint" class="ti" value="<mt:var name="hint" escape="html">" />
80    </mtapp:setting>
81    <mtapp:setting
82        id="url"
83        label="<__trans phrase="Website URL">"
84        label_class="top-label"
85        hint="<__trans phrase="The URL of your website. (Optional)">">
86        <input type="text" name="url" id="url" class="ti" value="<mt:var name="url" escape="html">" />
87    </mtapp:setting>
88
89    <div class="actions-bar">
90        <div class="actions-bar-inner pkg actions">
91            <button
92                type="submit"
93                class="primary-button"
94                ><__trans phrase="Register"></button>
95        </div>
96    </div>
97</form>
98
99<mt:include name="../cms/include/chromeless_footer.tmpl">
Note: See TracBrowser for help on using the browser.