Fix paths in login-related forms

This commit is contained in:
Fedor A. Fetisov 2013-09-06 14:34:44 +04:00 committed by webadmin
parent 4e6eff55e5
commit 621f5951c4
3 changed files with 18 additions and 18 deletions

View File

@ -75,7 +75,7 @@ require_once('inc_errors.php');
<input type="image" name="login" src="<?php echo $webimroot . htmlspecialchars(getlocal("image.button.login")) ?>" alt="<?php echo htmlspecialchars(getlocal("button.enter")) ?>"/>
<div class="links">
<a href="restore.php"><?php echo getlocal("restore.pwd.message") ?></a><br/>
<a href="<?php echo $webimroot ?>/operator/restore.php"><?php echo getlocal("restore.pwd.message") ?></a><br/>
</div>
</div>

View File

@ -37,7 +37,7 @@ function tpl_content() {
<?php echo getlocal("resetpwd.changed") ?>
<br/>
<br/>
<a href="login.php?login=<?php echo urlencode($page['loginname']) ?>"><?php echo getlocal("resetpwd.login") ?></a>
<a href="<?php echo $webimroot ?>/operator/login.php?login=<?php echo urlencode($page['loginname']) ?>"><?php echo getlocal("resetpwd.login") ?></a>
</div>
</div>
@ -91,11 +91,11 @@ require_once('inc_errors.php');
</tr></table>
<div class="links">
<a href="login.php"><?php echo getlocal("restore.back_to_login") ?></a>
<a href="<?php echo $webimroot ?>/operator/login.php"><?php echo getlocal("restore.back_to_login") ?></a>
</div>
</div>
<?php } else { ?>
<a href="login.php"><?php echo getlocal("restore.back_to_login") ?></a>
<a href="<?php echo $webimroot ?>/operator/login.php"><?php echo getlocal("restore.back_to_login") ?></a>
<?php } ?>
</div>

View File

@ -23,13 +23,13 @@ $page['headertitle'] = getlocal("app.title");
$page['show_small_login'] = true;
$page['fixedwrap'] = true;
function tpl_content() {
function tpl_content() {
global $page, $webimroot, $errors;
if($page['isdone']) {
?>
<div id="loginpane">
<div class="header">
<div class="header">
<h2><?php echo getlocal("restore.sent.title") ?></h2>
</div>
@ -37,29 +37,29 @@ function tpl_content() {
<?php echo getlocal("restore.sent") ?>
<br/>
<br/>
<a href="login.php"><?php echo getlocal("restore.back_to_login") ?></a>
<a href="<?php echo $webimroot ?>/operator/login.php"><?php echo getlocal("restore.back_to_login") ?></a>
</div>
</div>
<?php
</div>
<?php
} else {
?>
<form name="restoreForm" method="post" action="<?php echo $webimroot ?>/operator/restore.php">
<div id="loginpane">
<div class="header">
<div class="header">
<h2><?php echo getlocal("restore.title") ?></h2>
</div>
<div class="fieldForm">
<?php echo getlocal("restore.intro") ?><br/><br/>
<?php
<?php
require_once('inc_errors.php');
?>
<div class="field">
<div class="fleftlabel"><?php echo getlocal("restore.emailorlogin") ?></div>
<div class="fvalue">
@ -71,11 +71,11 @@ require_once('inc_errors.php');
<div class="fbutton">
<table class="submitbutton"><tr>
<td><a href="javascript:document.restoreForm.submit();">
<img src='<?php echo $webimroot ?>/images/submit.gif' width="40" height="35" border="0" alt="" /></a></td>
<img src="<?php echo $webimroot ?>/images/submit.gif" width="40" height="35" border="0" alt="" /></a></td>
<td class="submit"><a href="javascript:document.restoreForm.submit();">
<?php echo getlocal("restore.submit") ?></a></td>
<td><a href="javascript:document.restoreForm.submit();">
<img src='<?php echo $webimroot ?>/images/submitrest.gif' width="10" height="35" border="0" alt="" /></a></td>
<img src="<?php echo $webimroot ?>/images/submitrest.gif" width="10" height="35" border="0" alt="" /></a></td>
</tr></table>
<div class="links">
@ -85,10 +85,10 @@ require_once('inc_errors.php');
</div>
</div>
</div>
</form>
<?php
<?php
}
} /* content */