mirror of
https://github.com/Xkeeper0/jul.git
synced 2025-08-30 20:03:48 -07:00
First (real) commit... I hope.
This commit is contained in:
77
js/password.js
Normal file
77
js/password.js
Normal file
@@ -0,0 +1,77 @@
|
||||
function checkName()
|
||||
{
|
||||
if (window.document.REPLIER.username.value == '')
|
||||
{
|
||||
alert('Please Enter Your Username');
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
function checkPass()
|
||||
{
|
||||
if (window.document.REPLIER.password.value == '')
|
||||
{
|
||||
alert('Please Enter Your Password');
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
function checkTitle()
|
||||
{
|
||||
if (window.document.REPLIER.subject.value == '')
|
||||
{
|
||||
alert('Please Enter Your Thread Title');
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
function checkPost()
|
||||
{
|
||||
if (window.document.REPLIER.message.value == '')
|
||||
{
|
||||
alert('Please Enter Your Message');
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
function checkReciever()
|
||||
{
|
||||
if (window.document.REPLIER.username.value == '')
|
||||
{
|
||||
alert('Please Enter The Recieving User');
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
function checkSubject()
|
||||
{
|
||||
if (window.document.REPLIER.subject.value == '')
|
||||
{
|
||||
alert('Please Enter The Subject');
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user