Hi @ all,
hab hier ein kleinen PHP script das in einem Mambo CMS leuft.
Würde gerne die Eingabe felder auf den Urzustand setzen.
So bald man auf Anmelden klickt, hat einer ne Idee.
Vll. mit document.meinformular.reset();
<?php
defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' );
//set the url for submitting login to squirrelmail
$url = $params->get( 'url' );
$path = $params->get( 'path' );
$urlstr = "http://www.$url/$path/src/redirect.php";
//count the number of letters in the url to return a value for the username input value
$urlarr = explode(".", $url);
$nameval = strlen($urlarr[0]) + 1;
?>
<FORM action="<?php echo $urlstr; ?>" method=post target="_blank">
<table width="100%" border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td>
<INPUT type=hidden value="<?php echo $url; ?>" name=login_domain>
<?php echo _USERNAME; ?><br /><input type="text" value="@xxxx.de" name=login_username class="inputbox" size="20" /> <br /> <?php echo _PASSWORD; ?><br /><input type="password" value="" name=secretkey class="inputbox" size="20" />
<INPUT type=hidden value=0 name=js_autodetect_results>
<INPUT type=hidden value=1 name=just_logged_in>
<INPUT type="submit" name="Submit" class="button" value="<?php echo _BUTTON_LOGIN; ?>" />
</td>
</tr>
</table>
</FORM>
hab hier ein kleinen PHP script das in einem Mambo CMS leuft.
Würde gerne die Eingabe felder auf den Urzustand setzen.
So bald man auf Anmelden klickt, hat einer ne Idee.
Vll. mit document.meinformular.reset();
<?php
defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' );
//set the url for submitting login to squirrelmail
$url = $params->get( 'url' );
$path = $params->get( 'path' );
$urlstr = "http://www.$url/$path/src/redirect.php";
//count the number of letters in the url to return a value for the username input value
$urlarr = explode(".", $url);
$nameval = strlen($urlarr[0]) + 1;
?>
<FORM action="<?php echo $urlstr; ?>" method=post target="_blank">
<table width="100%" border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td>
<INPUT type=hidden value="<?php echo $url; ?>" name=login_domain>
<?php echo _USERNAME; ?><br /><input type="text" value="@xxxx.de" name=login_username class="inputbox" size="20" /> <br /> <?php echo _PASSWORD; ?><br /><input type="password" value="" name=secretkey class="inputbox" size="20" />
<INPUT type=hidden value=0 name=js_autodetect_results>
<INPUT type=hidden value=1 name=just_logged_in>
<INPUT type="submit" name="Submit" class="button" value="<?php echo _BUTTON_LOGIN; ?>" />
</td>
</tr>
</table>
</FORM>
Kommentar