aboutsummaryrefslogtreecommitdiffstats
path: root/themes/smartpocket/template/identification.tpl
diff options
context:
space:
mode:
authorpatdenice <patdenice@piwigo.org>2012-02-16 11:51:34 +0000
committerpatdenice <patdenice@piwigo.org>2012-02-16 11:51:34 +0000
commita7f70524df847f3dd8e53e0e07b67597edb1631c (patch)
treedb87ef3bae8722e2439c85edcc67f6d280aef91e /themes/smartpocket/template/identification.tpl
parent4f2ae7cbcece6409b2b7e6e2ec4b73ad04917c5e (diff)
feature:2577
Add mobile theme git-svn-id: http://piwigo.org/svn/trunk@13182 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r--themes/smartpocket/template/identification.tpl41
1 files changed, 41 insertions, 0 deletions
diff --git a/themes/smartpocket/template/identification.tpl b/themes/smartpocket/template/identification.tpl
new file mode 100644
index 000000000..33d011570
--- /dev/null
+++ b/themes/smartpocket/template/identification.tpl
@@ -0,0 +1,41 @@
+{include file='infos_errors.tpl'}
+<div data-role="content">
+<h3>{'Identification'|@translate}</h3>
+<form action="{$F_LOGIN_ACTION}" method="post" name="login_form" class="properties">
+
+ <div data-role="fieldcontain">
+ <label for="username">{'Username'|@translate}</label>
+ <input type="text" name="username" id="username">
+ </div>
+
+
+ <div data-role="fieldcontain">
+ <label for="password">{'Password'|@translate}</label>
+ <input type="password" name="password" id="password" value="">
+ </div>
+
+ {if $authorize_remembering }
+ <div data-role="fieldcontain">
+ <label for="remember_me">{'Auto login'|@translate}</label>
+ <input type="checkbox" name="remember_me" id="remember_me" value="1">
+ </div>
+ {/if}
+
+ <div data-role="fieldcontain">
+ <input type="hidden" name="redirect" value="{$U_REDIRECT|@urlencode}">
+ <input type="submit" name="login" value="{'Submit'|@translate}">
+ </div>
+
+</form>
+
+ <div data-role="fieldcontain">
+{if isset($U_REGISTER)}
+ <a href="{$U_REGISTER}" data-role="button">{'Register'|@translate}</a>
+{/if}
+{*
+{if isset($U_LOST_PASSWORD)}
+ <a href="{$U_LOST_PASSWORD}" data-role="button">{'Forgot your password?'|@translate}</a>
+{/if}
+*}
+ </div>
+</div>