source: trunk/themes/smartpocket/template/identification.tpl @ 13182

Last change on this file since 13182 was 13182, checked in by patdenice, 12 years ago

feature:2577
Add mobile theme

File size: 1.2 KB
Line 
1{include file='infos_errors.tpl'}
2<div data-role="content">
3<h3>{'Identification'|@translate}</h3>
4<form action="{$F_LOGIN_ACTION}" method="post" name="login_form" class="properties">
5
6  <div data-role="fieldcontain">
7  <label for="username">{'Username'|@translate}</label>
8  <input type="text" name="username" id="username">
9  </div>
10   
11
12  <div data-role="fieldcontain">
13  <label for="password">{'Password'|@translate}</label>
14  <input type="password" name="password" id="password" value="">
15  </div>
16
17  {if $authorize_remembering }
18  <div data-role="fieldcontain">
19  <label for="remember_me">{'Auto login'|@translate}</label>
20  <input type="checkbox" name="remember_me" id="remember_me" value="1">
21  </div>
22  {/if}
23
24  <div data-role="fieldcontain">
25    <input type="hidden" name="redirect" value="{$U_REDIRECT|@urlencode}">
26    <input type="submit" name="login" value="{'Submit'|@translate}">
27  </div>
28
29</form>
30
31        <div data-role="fieldcontain">
32{if isset($U_REGISTER)}
33                <a href="{$U_REGISTER}" data-role="button">{'Register'|@translate}</a>
34{/if}
35{*
36{if isset($U_LOST_PASSWORD)}
37                <a href="{$U_LOST_PASSWORD}" data-role="button">{'Forgot your password?'|@translate}</a>
38{/if}
39*}
40        </div>
41</div>
Note: See TracBrowser for help on using the repository browser.