[Phpcms-plugins-cvs] admin4phpCMS/modules/user/templates user_profile.tpl,NONE,1.1 user_admin.tpl,NO
Brought to you by:
mjahn
From: Martin J. <mj...@us...> - 2005-04-07 14:09:24
|
Update of /cvsroot/phpcms-plugins/admin4phpCMS/modules/user/templates In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15012/modules/user/templates Added Files: user_profile.tpl user_admin.tpl module_user.tpl Log Message: Commit as backup during development --- NEW FILE: user_admin.tpl --- --- NEW FILE: module_user.tpl --- {if ($moduledata.action == "login")} <form action="{$INDEX_FILE}" method="post"> <fieldset> <legend>Login</legend> <label> <span>Username</span> <select name="username" size="1"> {foreach from=$moduledata.userlist item=userdata} <option value="{$userdata.username}">{$userdata.username}</option> {/foreach} </select> </label> <label> <span>Password</span> <input type="password" name="password" value="" /> </label> <div class="label"> Login for the demo with username <em>demo</em> and password <em>demo</em> </div> <label> <span> <span class="hidden"> Login </span> </span> <input type="submit" name="us_submit_form" value="Login" /> </label> </fieldset> </form> {/if} --- NEW FILE: user_profile.tpl --- |