forked from saadatalishah/quiz-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
63 lines (43 loc) · 1.39 KB
/
main.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
// function checkForLastName() {
// if (document.getElementById("lastNameField").value.length === 0)
// { alert("Please enter your last name");
// document.getElementById("lastNameField").focus();
// return false;
// }
// }
// function returnValidField() {
// if (document.getElementById("name").value.length > 10) {
// alert("Your Given Num Is Too Large");
// document.getElementById("name").focus();
// return false;
// }
// if (document.getElementById("name").value.length < 5) {
// alert("Your Given Num Is Too Small");
// document.getElementById("name").focus();
// return false;
// }
// }
//*************************Dua App*********************************//
function signup()
{
var inp1=document.getElementById('input').value;
var inp2=document.getElementById('input1').value;
var inp3=document.getElementById('input2').value;
var inp4=document.getElementById('input3').value;
var inp5=document.getElementById('input4').value;
var array=[];
array.push(inp1);
array.push(inp2);
array.push(inp3);
array.push(inp4);
array.push(inp5);
console.log(array);
localStorage.setItem("userdata",array);
if(inp1=="" || inp2=="" || inp3=="" || inp4=="" || inp5=="")
{
alert('plz filll in the form first');
}
else{
window.location.href="login.html";
}
}