Files
Piwigo/template/cclear/profile.tpl
T
plegall f01a9f5b7c - new : HTML BODY identifier to let CSS stylesheets manage specific
behaviour.

- deletion : admin/search useless

- improvement : in admin/user_list, special behaviour for true/false fields
  (expand, show_comments)

- new : gallery_title and gallery_description are displayed at the top of
  each page.

- improvement : simplification in HTML for categories menu.

- improvement : standardization of presentation in all public pages
  (identification, registration, search, profile, notification, comments,
  etc.)

(not in ChangeLog, below this line)

- add forgotten notification.php (should have been added in a previous
  commit)

- [template cclear] deletion of useless class .bouton

- [template cclear] for test purpose, new presentation of register page
  (using FORM.filter)

- [template cclear] adaptation of admin/group_list from template default

- [template cclear] deletion of obsolete admin/infos_images

- [template cclear] deletion of obsolete admin/search_username

- [template cclear] new icon register.png


git-svn-id: http://piwigo.org/svn/trunk@850 68402e56-0260-453c-a942-63ccdbb3a9ee
2005-08-25 22:43:47 +00:00

88 lines
2.7 KiB
Smarty

<!-- BEGIN errors -->
<div class="errors">
<ul>
<!-- BEGIN error -->
<li>{errors.error.ERROR}</li>
<!-- END error -->
</ul>
</div>
<!-- END errors -->
<h2>{L_TITLE}</h2>
<div class="formbox">
<form method="post" name="profile" action="{F_ACTION}" id="profile">
<p><input type="hidden" name="userid" value="{USERID}" /></p>
<h3>{L_REGISTRATION_INFO}</h3>
<dl>
<dt width="50%">{L_USERNAME}</dt>
<dd>{USERNAME}</dd>
<dt>{L_EMAIL}</dt>
<dd><input type="text" name="mail_address" value="{EMAIL}" /></dd>
</dl>
<dl class="biglabel">
<dt>{L_CURRENT_PASSWORD} : <br /><span class="small">{L_CURRENT_PASSWORD_HINT}</span></dt>
<dd><input type="password" name="password" value="" /></dd>
</dl>
<dl class="biglabel">
<dt>{L_NEW_PASSWORD} : <br /><span class="small">{L_NEW_PASSWORD_HINT}</span></dt>
<dd><input type="password" name="use_new_pwd" value="" /></dd>
</dl>
<dl class="biglabel">
<dt>{L_CONFIRM_PASSWORD} : <br /><span class="small">{L_CONFIRM_PASSWORD_HINT}</span></dt>
<dd><input type="password" name="passwordConf" value="" /></dd>
</dl>
<h3>{L_PREFERENCES}</h3>
<dl>
<dt>{L_NB_IMAGE_LINE}</dt>
<dd>
<input type="text" size="3" maxlength="2" name="nb_image_line" value="{NB_IMAGE_LINE}" />
</dd>
<dt>{L_NB_ROW_PAGE}</dt>
<dd>
<input type="text" size="3" maxlength="2" name="nb_line_page" value="{NB_ROW_PAGE}" />
</dd>
<dt>{L_STYLE_SELECT}</dt>
<dd>
{STYLE_SELECT}
</dd>
<dt>{L_LANG_SELECT}</dt>
<dd>
{LANG_SELECT}
</dd>
<dt>{L_RECENT_PERIOD}</dt>
<dd>
<input type="text" size="3" maxlength="2" name="recent_period" value="{RECENT_PERIOD}" />
</dd>
<dt>{L_EXPAND_TREE}</dt>
<dd>
<input type="radio" class="radio" name="expand" value="true" {EXPAND_TREE_YES} />{L_YES}&nbsp;&nbsp;
<input type="radio" class="radio" name="expand" value="false" {EXPAND_TREE_NO} />{L_NO}
</dd>
<dt>{L_NB_COMMENTS}</dt>
<dd>
<input type="radio" class="radio" name="show_nb_comments" value="true" {NB_COMMENTS_YES} />{L_YES}&nbsp;&nbsp;
<input type="radio" class="radio" name="show_nb_comments" value="false" {NB_COMMENTS_NO} />{L_NO}
</dd>
<dt>{L_MAXWIDTH}</dt>
<dd>
<input type="text" size="4" maxlength="4" name="maxwidth" value="{MAXWIDTH}" />
</dd>
<dt>{L_MAXHEIGHT}</dt>
<dd>
<input type="text" size="4" maxlength="4" name="maxheight" value="{MAXHEIGHT}" />
</dd>
</dl>
<p class="bottomButtons">
<input type="submit" name="validate" value="{L_SUBMIT}">
<input type="reset" name="reset" value="{L_RESET}">
</p>
</form>
<p><a href="{U_RETURN}" title="{L_RETURN_HINT}">[{L_RETURN}]</a></p>
</div>