-
Notifications
You must be signed in to change notification settings - Fork 3
/
phone.html
64 lines (55 loc) · 2.54 KB
/
phone.html
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
64
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport">
<title>E-gate</title>
<link href="https://fonts.googleapis.com/css?family=Hind+Siliguri|Play" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="./styleMobile.css">
</head>
<body>
<div class="container">
<div class="title">
<h1><b>E-Gate</b></h1>
</div>
<nav class="buttonGroup">
<button id="nuParkeren"><span>Nu Parkeren</span></button>
<button id="accountBedrijven"><span>Bedrijven</span></button>
<button id="overOns"><span>Over ons</span></button>
</nav>
<div id="loginForm">
<h3 class="header3"> Login automobilisten</h3>
<label for="fullname">Gebruikersnaam</label><input type="text" id="fullname" class="formFields">
<label for="phone">Wachtwoord</label><input type="text" id="phone" class="formFields">
<button id="loginUser">Toevoegen</button><button id="cancelUser">Cancel</button>
</div>
<div id="bedrijven">
<h3 class="header3"> Login als u al een account heeft. Zo niet maak dan een account aan.</h3>
<button id="loginBedrijf">Login</button><button id="cancelBedrijf">Maak account aan</button>
</div>
<div id="loginFormBedrijven">
<h3 class="header3"> Login bedrijven</h3>
<label for="fullname">Gebruikersnaam</label><input type="text" id="fullname" class="formFields">
<label for="phone">Wachtwoord</label><input type="text" id="phone" class="formFields">
<button id="loginUser">Toevoegen</button><button id="cancelUser">Cancel</button>
</div>
</body>
<script>
document.getElementById("nuParkeren").addEventListener("click", function(){
document.getElementById("loginFormBedrijven").style.display = "none";
document.getElementById("bedrijven").style.display = "none";
document.getElementById("loginForm").style.display = "block";
});
document.getElementById("accountBedrijven").addEventListener("click", function(){
document.getElementById("loginForm").style.display = "none";
document.getElementById("loginFormBedrijven").style.display = "none";
document.getElementById("bedrijven").style.display = "block";
});
document.getElementById("loginBedrijf").addEventListener("click", function(){
document.getElementById("loginForm").style.display = "none";
document.getElementById("loginFormBedrijven").style.display = "block";
document.getElementById("bedrijven").style.display = "none";
});
</script>
</html>