-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdelete_kund.php
46 lines (32 loc) · 992 Bytes
/
delete_kund.php
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
<?php
session_start();
?>
<!DOCTYPE html>
<meta charset="UTF-8">
<title>Buxtor</title>
<link rel="stylesheet" href="css/minsida_kund.css">
<html>
<body>
<?php include "header.php" ?>
<?php include "navbar.php" ?>
<div class="container">
<div class="kund">
<h2>Ödelägg mitt konto</h2>
<button onclick="myFunction()">Förinta mitt konto</button>
<p id="demo"></p>
<script>
function myFunction() {
var r = confirm("Vill du verkligen eliminera ditt konto?")
if (r) {
window.alert("Ditt konto har blivit utplånat.");
window.location.href = "action_delete_kund.php";
} else {
window.location.href = "delete_kund.php";
}
//document.getElementById("demo").innerHTML = txt;
}
</script>
</div>
</div>
</body>
</html>