diff options
author | patdenice <patdenice@piwigo.org> | 2012-02-16 11:51:34 +0000 |
---|---|---|
committer | patdenice <patdenice@piwigo.org> | 2012-02-16 11:51:34 +0000 |
commit | a7f70524df847f3dd8e53e0e07b67597edb1631c (patch) | |
tree | db87ef3bae8722e2439c85edcc67f6d280aef91e /themes/smartpocket/template/profile_content.tpl | |
parent | 4f2ae7cbcece6409b2b7e6e2ec4b73ad04917c5e (diff) |
feature:2577
Add mobile theme
git-svn-id: http://piwigo.org/svn/trunk@13182 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'themes/smartpocket/template/profile_content.tpl')
-rw-r--r-- | themes/smartpocket/template/profile_content.tpl | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/themes/smartpocket/template/profile_content.tpl b/themes/smartpocket/template/profile_content.tpl new file mode 100644 index 000000000..6c9cb5064 --- /dev/null +++ b/themes/smartpocket/template/profile_content.tpl @@ -0,0 +1,58 @@ + +<form method="post" name="profile" action="{$F_ACTION}" id="profile" class="properties"> + + <div data-role="fieldcontain"> + <label for="username">{'Username'|@translate}</label> + <input type="text" name="username" id="username" value="{$USERNAME}" disabled="disabled"> + </div> + + {if not $SPECIAL_USER} {* can modify password + email*} + <div data-role="fieldcontain"> + <label for="mail_address">{'Email address'|@translate}</label> + <input type="text" name="mail_address" id="mail_address" value="{$EMAIL}"> + </div> + + <div data-role="fieldcontain"> + <label for="password">{'Password'|@translate}</label> + <input type="password" name="password" id="password" value=""> + </div> + + <div data-role="fieldcontain"> + <label for="use_new_pwd">{'New password'|@translate}</label> + <input type="password" name="use_new_pwd" id="use_new_pwd" value=""> + </div> + + <div data-role="fieldcontain"> + <label for="passwordConf">{'Confirm Password'|@translate}</label> + <input type="password" name="passwordConf" id="passwordConf" value=""> + </div> + {/if} + +{if $ALLOW_USER_CUSTOMIZATION} + <div data-role="fieldcontain"> + <label for="language">{'Language'|@translate}</label> + {html_options name=language options=$language_options selected=$language_selection} + </div> +{/if} + + + <div data-role="fieldcontain"> + {if $ALLOW_USER_CUSTOMIZATION} + <input type="hidden" name="nb_image_page" value="{$NB_IMAGE_PAGE}"> + <input type="hidden" name="theme" value="{$template_selection}"> + <input type="hidden" name="recent_period" value="{$RECENT_PERIOD}"> + <input type="hidden" name="expand" value="{$EXPAND}"> + <input type="hidden" name="show_nb_comments" value="{$NB_COMMENTS}"> + <input type="hidden" name="show_nb_hits" value="{$NB_HITS}"> + {/if} + <input type="hidden" name="redirect" value="{$REDIRECT}"> + <input type="hidden" name="pwg_token" value="{$PWG_TOKEN}"> + <input class="submit" type="submit" name="validate" value="{'Submit'|@translate}"> + <input class="submit" type="reset" name="reset" value="{'Reset'|@translate}"> + {if $ALLOW_USER_CUSTOMIZATION} + <input class="submit" type="submit" name="reset_to_default" value="{'Reset to default values'|@translate}"> + {/if} + </div> + +</form> + |