FEU Version 1.6.1
Contents |
Login template
<!-- Login form template --> <!-- this is a sample template, feel free to customize it --> {$startform} {if $error} {$error}<br> {/if} <p>{$prompt_username} {$input_username} {$prompt_password} {$input_password}<br/> {if isset($captcha)} {$captcha_title}: {$input_captcha}<br/> {$captcha}<br/> {/if} {if isset($input_rememberme)} {$input_rememberme} {$prompt_rememberme}<br/> {/if} <input type="submit" name="{$feuactionid}submit" value="{$mod->Lang('login')}"/><br/> <a href="{$url_forgot}" title="{$mod->Lang('info_forgotpw')}">{$mod->Lang('forgotpw')}</a><br/> <a href="{$url_lostun}" title="{$mod->Lang('info_lostun')}">{$mod->Lang('lostusername')}</a></p> {$endform} <!-- Login form template -->
Change settings template
<!-- change settings template --> {$title} {if $message != ''} {if $error != ''} <p><font color="red">{$message}</font></p> {else} <p>{$message}</p> {/if} {/if} {$startform} {if $controlcount > 0} <center> <table width="75%"> {foreach from=$controls item=control} <tr> <td>{$control->hidden}<font color="{$control->color}">{$control->prompt}{$control->marker}</font></td> <td> {if isset($control->image)}{$control->image}<br/>{/if} {$control->control}{$control->addtext} {if $control->required != true} {if isset($control->control2)}{$control->prompt2} {$control->control2}<br/>{/if} {/if} </td> </tr> {/foreach} </table> </center> {/if} {$hidden}{$hidden2}{$submit}{$cancel} {$endform} <!-- change settings template -->
Forgot password templates
<!-- forgot password template --> {$startform} {$title} {if !empty($message) } {if !empty($error) } <p><font color="red">{$message}</font></p> {else} <p>{$message}</p> {/if} {/if} <p>{$lostpw_message}</p> <p>{$prompt_username} {$input_username}</p> <p>{$hidden}{$submit} {$cancel}</p> {$endform} <!-- forgot password template -->
<!-- forgot password email template --> <p>{$message_forgotpwemail}</p> <p>{$prompt_code} {$data_code}</p> <p>{$prompt_link} {$data_link}<p> <!-- forgot password email template -->
<!-- forgot password verification template --> {$startform} {$title} {if !empty($message)} {if !empty($error) } <p><font color="red">{$message}</font></p> {else} <p>{$message}</p> {/if} {/if} <p>{$prompt_username} {$input_username}</p> <p>{$prompt_code} {$input_code}</p> <p>{$prompt_password} {$input_password}</p> <p>{$prompt_repeatpassword} {$input_repeatpassword}</p> <p>{$hidden}{$submit}</p> {$endform} <!-- forgot password verification template -->
Lost username templates
{* lost username confirm template form *} <h4>{$title}</h4> {if isset($message)}<h5 class="error">{$message}</h5>{/if} {if $controlcount > 0} {$startform}{$hidden} <div class="pagerow"> <div class="page_prompt">{$prompt_password}</div> <div class="page_input">{$input_password}</div> </div> {foreach from=$controls item='entry'} <div class="pagerow"> <div class="page_prompt">{$entry->hidden}{$entry->prompt}</div <div class="page_input">{$entry->control}{$entry->addtext}</div> </div> {/foreach} <div class="pagerow">{$submit}{$cancel}</div> <div class="pagerow"> {$captcha_title}{$input_captcha}{$captcha} </div> {$endform} {/if}
{* lost username confirm template form *} <p>{$premsg}</p> <p>{$prompt_yourusernameis}: <strong>{$username}</strong>.</p> <p>{$postmsg}</p>
View user template
{* view user template *} <p>{$feu->Lang('id')}: {$userinfo.id}</p> <p>{$feu->Lang('username')}: {$userinfo.username}</p> <p>{$feu->Lang('expires')}: {$userinfo.expires}</p> {foreach from=$user_properties item='entry'} {if $entry.type != 0} <p>{$entry.prompt}: {$entry.data}</p> {/if} {/foreach}