Update index.html

This commit is contained in:
Arc 2020-02-24 18:13:08 +00:00 committed by GitHub
parent 6f06bcfb36
commit af10c8274a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -328,11 +328,11 @@ function postfau(){
return amt
}
if (isNaN(maxamt) || maxamt < 10 || maxamt > 1000000) {
if (isNaN(maxamt) || maxamt < 10) {
document.getElementById("error").innerHTML = "Max 15 - 1000000 and must be higher than min"
return amt
}
if (isNaN(minamt) || minamt < 1 || minamt > 1000000 || minamt > maxamt) {
if (isNaN(minamt) || minamt < 1 || minamt > maxamt) {
document.getElementById("error").innerHTML = "Min 1 - 1000000 and must be lower than max"
return amt
}