-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmy.js
45 lines (36 loc) · 1.47 KB
/
my.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
function button_click_voter(){
var x=document.getElementById('voter_button');
x.style.backgroundColor = '#EB5255';
x.style.color='#FAFAFA';
var y=document.getElementById('candidate_button');
y.style.backgroundColor = '#FAFAFA';
y.style.color='#596E78';
}
function button_click_candidate(){
var x=document.getElementById('candidate_button');
x.style.backgroundColor = '#EB5255';
x.style.color='#FAFAFA';
var y=document.getElementById('voter_button');
y.style.backgroundColor = '#FAFAFA';
y.style.color='#596E78';
}
function open_login(){
document.getElementById('login_form_box').style.display = 'block';
document.getElementById('signup_form_box').style.display = 'none';
var x=document.getElementById('login_button_selector');
x.style.backgroundColor = '#EB5255';
x.style.color = '#FAFAFA';
var y=document.getElementById('signup_button_selector');
y.style.backgroundColor = '#FAFAFA';
y.style.color = '#596E78';
}
function open_signup(){
document.getElementById('signup_form_box').style.display = 'block';
document.getElementById('login_form_box').style.display = 'none';
var x=document.getElementById('signup_button_selector');
x.style.backgroundColor = '#EB5255';
x.style.color = '#FAFAFA';
var y=document.getElementById('login_button_selector');
y.style.backgroundColor = '#FAFAFA';
y.style.color = '#596E78';
}