-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
119 lines (107 loc) · 2.9 KB
/
index.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Kalkulator Zakat Mal</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f2f2f2;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.container {
width: 90%;
max-width: 500px;
background-color: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
h1 {
text-align: center;
color: #337ab7;
text-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
margin-bottom: 20px;
}
#zakatForm {
display: flex;
flex-direction: column;
}
label {
margin-bottom: 5px;
color: #333;
}
input[type="number"],
input[type="text"] {
width: 100%;
padding: 10px;
border-radius: 4px;
border: 1px solid #ccc;
margin-bottom: 15px;
box-sizing: border-box;
}
input[readonly] {
background-color: #e9ecef;
color: #495057;
}
button[type="submit"] {
background-color: #337ab7;
color: white;
border: none;
padding: 10px;
border-radius: 4px;
cursor: pointer;
margin-top: 10px;
}
button:hover {
background-color: #08508e;
}
.result {
margin-top: 20px;
text-align: center;
font-weight: bold;
}
.error {
color: red;
}
</style>
</head>
<body>
<div class="container">
<h1>Kalkulator Zakat Mal</h1>
<form id="zakatForm">
<label for="totalAssets">Total Aset (Rp):</label>
<input type="text" inputmode="numeric" id="totalAssets" required />
<label for="nisab">Nisab (Rp):</label>
<input type="text" inputmode="numeric" id="nisab" required />
<button type="submit">Hitung Zakat</button>
<div class="result" id="result"></div>
</form>
</div>
<script>
document
.getElementById("zakatForm")
.addEventListener("submit", function (event) {
event.preventDefault();
const totalAssets = parseFloat(
document.getElementById("totalAssets").value
);
const nisab = parseFloat(document.getElementById("nisab").value);
if (totalAssets >= nisab) {
const zakat = (totalAssets * 2.5) / 100;
document.getElementById(
"result"
).innerText = `Zakat yang harus dibayar: Rp ${zakat}`;
} else {
document.getElementById("result").innerText =
"Total aset Anda belum mencapai nisab, Anda tidak wajib membayar zakat.";
}
});
</script>
</body>
</html>