21 lines
986 B
Smarty
21 lines
986 B
Smarty
|
<h2>Login</h2>
|
||
|
<span style="text-align:center; display:block;">
|
||
|
<form class="loginform" action="{$path}login.php" method="post">
|
||
|
<strong>Username:<br /></strong>
|
||
|
<input type="text" id="username" name="username" size="15" maxlength="25" /><br />
|
||
|
<strong>Password:</strong><br />
|
||
|
<input type="password" id="password" name="password" size="15" maxlength="25" /><br /><br />
|
||
|
{if $config.use_openid==1}
|
||
|
<strong>oder</strong><br />
|
||
|
<strong>benutze Open ID:</strong><br />
|
||
|
<input type="openid_identifier" name="openid_identifier" id="openid_identifier" size="15" maxlength="45" /><br /><br />
|
||
|
{/if}
|
||
|
<label><input type="checkbox" name="remember" /> <strong>Remember me</strong></label><br />
|
||
|
<input type="submit" class="button" name="submit" value="Login" />
|
||
|
<input type="hidden" name="action" value="do_login" />
|
||
|
<input type="hidden" name="url" value="{$path}/index.php" /><br />
|
||
|
<br />
|
||
|
<a href="/lostpw.php">Lost Password?</a> or need to <a href="/register.php">Register</a>?
|
||
|
</form>
|
||
|
</span>
|