diff options
author | z0rglub <z0rglub@piwigo.org> | 2003-05-09 12:42:42 +0000 |
---|---|---|
committer | z0rglub <z0rglub@piwigo.org> | 2003-05-09 12:42:42 +0000 |
commit | 867c2379ff66ce0f2c4f872a13027fd649aa076d (patch) | |
tree | fd182bca99fc6cfe09a7821fab35ce2629fdab44 /template/default/profile.vtp | |
parent | fe51c10474152f319d08229147adbc95fcd6c219 (diff) |
Initial revision
git-svn-id: http://piwigo.org/svn/trunk@2 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'template/default/profile.vtp')
-rw-r--r-- | template/default/profile.vtp | 84 |
1 files changed, 84 insertions, 0 deletions
diff --git a/template/default/profile.vtp b/template/default/profile.vtp new file mode 100644 index 000000000..ed6a8998a --- /dev/null +++ b/template/default/profile.vtp @@ -0,0 +1,84 @@ +<html> + <head> + {#page_style} + <title>{#customize_page_title}</title> + </head> + <body> + <table style="width:100%;height:100%"> + <tr align="center" valign="middle"> + <td> + {#frame_start}1px{#frame_begin} + <div class="titrePage">{#customize_title}</div> + {#frame_end} + <div style="margin-bottom:20px"></div> + {#frame_start}50%{#frame_begin} + <form method="post" action="{#form_action}"> + <table style="width:100%;margin-top:10px;margin-bottom:10px;"> + <tr align="center" valign="middle"> + <td> + <table width="80%"> + <!--VTP_errors--> + <tr> + <td colspan="2"> + <div class="errors"> + <ul> + <!--VTP_li--> + <li>{#li}</li> + <!--/VTP_li--> + </ul> + </div> + </td> + </tr> + <!--/VTP_errors--> + <!--VTP_line--> + <tr> + <td class="menu">{#name}</td> + <td class="menu"> + <!--VTP_select--> + <select name="{#name}"> + <!--VTP_option--> + <option{#selected}>{#option}</option> + <!--/VTP_option--> + </select> + <!--/VTP_select--> + <!--VTP_text--> + <input type="text" name="{#name}" value="{#value}" /> + <!--/VTP_text--> + <!--VTP_group--> + <!--VTP_radio--> + <input type="radio" name="{#name}" value="{#value}"{#checked}/>{#option} + <!--/VTP_radio--> + <!--/VTP_group--> + </td> + </tr> + <!--/VTP_line--> + <tr> + <td colspan="2"> </td> + </tr> + <tr> + <td class="menu">{#new} {#password}<input type="checkbox" name="use_new_pwd" value="1" /></td> + <td class="menu"><input type="password" name="password" value="" /></td> + </tr> + <tr> + <td class="menu">{#reg_confirm}</td> + <td class="menu"><input type="password" name="passwordConf" value="" /></td> + </tr> + <tr> + <td colspan="2"> </td> + </tr> + <tr> + <td colspan="2" align="center"> + <input type="submit" name="submit" value="{#submit}" style="margin:5px;"/> + </td> + </tr> + </table> + </td> + </tr> + </table> + </form> + {#frame_end} + </td> + </tr> + </table> + </body> +</html>
\ No newline at end of file |