﻿function LoginCheck()
{
    var E_Mail = document.getElementById("Email").value;
    var Password = document.getElementById("Password").value;
    if(E_Mail == "")
    {
        alert("Please fill in your email.");
        return false;
    }
    if(Password == "")
    {
        alert("Please fill in your password.");
        return false;
    }
}