1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <div id="login">
- <form name="frmLogin" method="post" action="">
- <input class="flat" type="hidden" name="token" value="{$smarty.session.PFA_token|escape:"url"}" />
- <table id="login_table" cellspacing="10">
- <tr>
- <th colspan="2">
- {if $logintype=='admin'}{$PALANG.pLogin_welcome}
- {else}{$PALANG.pUsersLogin_welcome}
- {/if}
- </th>
- </tr>
- <tr>
- <td class="label"><label>{$PALANG.pLogin_username}:</label></td>
- <td><input class="flat" type="text" name="fUsername" /></td>
- </tr>
- <tr>
- <td class="label"><label>{$PALANG.password}:</label></td>
- <td><input class="flat" type="password" name="fPassword" />
- {if $forgotten_password_reset}
- <br/><a href="password-recover.php">{$PALANG.pUsersLogin_password_recover}</a>
- {/if}
- </td>
- </tr>
- <tr>
- <td class="label"><label>{$PALANG.pLogin_language}:</label></td>
- <td>{$language_selector}</td>
- </tr>
- <tr>
- <td class="label"> </td>
- <td><input class="button" type="submit" name="submit" value="{$PALANG.pLogin_button}" /></td>
- </tr>
- {if $logintype == 'admin'}
- <tr>
- <td colspan="2"><a href="users/">{$PALANG.pLogin_login_users}</a></td>
- </tr>
- {/if}
- </table>
- </form>
- {literal}
- <script type="text/javascript">
- <!--
- document.frmLogin.fUsername.focus();
- // -->
- </script>
- {/literal}
- </div>
|