Closed
Bug 289415
Opened 20 years ago
Closed 17 years ago
nikonistas.com - Can't login as registered user
Categories
(Tech Evangelism Graveyard :: Spanish, defect)
Tech Evangelism Graveyard
Spanish
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: redy, Unassigned)
References
()
Details
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; es-ES; rv:1.5) Gecko/20031007 Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.0; es-ES; rv:1.5) Gecko/20031007 Entering a valid user and password (or even a invalid one) and clicking in the submit button icon, I get te following javascript error Error: document.clave has no properties Archivo de origen: http://www.nikonistas.com/es_home/horizontal6.php3 Línea: 180 Also many links in the lef menu doesn't work. Reproducible: Always Steps to Reproduce: 1. Enter any user number in the 'nikonista nº' field. 2. Enter any password in the 'password' field. 3. Press the black circle with a check sign. Actual Results: Nothing Expected Results: Accessing the web if username and password correct entered, or getting a error message otherwhise.
I send mails to: club@nikon-dpi.com infotech@nikon-dpi.com infoweb@nikon-dpi.com Without a satisfactory response after 1 month.
I think this is the submit action:
function envia()
{
if (nav=="ie")
{
if (f1.elements[0].value == "")
{
alert("El número de nikonista es un campo obligatorio.");
f1.elements[0].focus();
//return (false);
}
else
if (f1.elements[1].value == "")
{
alert("El password es un campo obligatorio.");
f1.elements[1].focus();
//return (false);
}
else f1.submit();
}
else {
if (document.clave.document.f1.elements[0].value == "")
{
alert("El número de nikonista es un campo obligatorio.");
document.clave.document.f1.elements[0].focus();
//return (false);
}
else
if (document.clave.document.f1.elements[1].value == "")
{
alert("El password es un campo obligatorio.");
document.clave.document.f1.elements[1].focus();
//return (false);
}
else document.clave.document.f1.submit();}
}
</script>
Comment 3•20 years ago
|
||
Conforming summary to TFM item 10 at http://www.mozilla.org/projects/tech-evangelism/site/procedures.html#file-new
Summary: Can't login as registered user. → nikonistas.com - Can't login as registered user
Comment 4•17 years ago
|
||
I don't see a login field on that page any more. I do see one on the forum page: http://www.nikonistas.com/digital/foro/ but I can enter bogus data there and it tells me (properly) that I've entered invalid credentials. I see no errors in the console, so marking FIXED by a site redesign.
Status: UNCONFIRMED → RESOLVED
Closed: 17 years ago
Resolution: --- → FIXED
Updated•10 years ago
|
Product: Tech Evangelism → Tech Evangelism Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•