Fix
This commit is contained in:
parent
0e9c054a12
commit
4fe015a74c
|
@ -9,7 +9,7 @@
|
|||
<h1 class="text-center sde-blue mt-0">Vagttelefon</h1>
|
||||
<p class="mt-0">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc sodales pulvinar congue aenean suspendisse.</p>
|
||||
<label class="toggle">
|
||||
<input class="toggle__input" type="checkbox" name="accept" id="input">
|
||||
<input class="toggle__input" type="checkbox" name="accept" id="input" onclick="check()">
|
||||
<span class="toggle__label sde-blue">
|
||||
<span class="toggle__text sde-blue semi-bold">Accepterer</span>
|
||||
</span>
|
||||
|
@ -20,5 +20,17 @@
|
|||
@endsection
|
||||
|
||||
@section("scripts")
|
||||
|
||||
<script>
|
||||
function check() {
|
||||
var checkBox = document.getElementById("input");
|
||||
var btn = document.getElementById("call");
|
||||
if (checkBox.checked == true){
|
||||
btn.href = "";
|
||||
btn.classList.remove("btn-disabled");
|
||||
} else {
|
||||
btn.href = "tel:+4556304566";
|
||||
btn.classList.add("btn-disabled");
|
||||
}
|
||||
}
|
||||
</script>
|
||||
@endsection
|
||||
|
|
Loading…
Reference in New Issue