by gsk3 » Mon Jun 20, 2005 10:33 am
Hi everyone,
First, a disclaimer: I'm not affiliated with PKP or OJS, and this is really bad, insecure HTML. But if anyone's still having login problems in OJS2 with Firefox, try placing a link in your login template to this html file saying something like "Login troubles?", and your people will be able to login again:
*Replace JOURNALROOT and JOURNALNAME with your values.
*Using the GET method also works, but is less secure.
<html>
<head>
<title>Temporary OJS login page</title>
</head>
</body>
<form name="input" action="JOURNALROOT/index.php/JOURNALNAME/login/signIn" METHOD="POST">
Login name:
<input type="text" name="username">
<br>
Password:
<input type="text" name="password">
<input type="submit" NAME="submit" VALUE="Submit">
</form>
</body>
</html>