-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaccount.php
More file actions
50 lines (46 loc) · 2.05 KB
/
account.php
File metadata and controls
50 lines (46 loc) · 2.05 KB
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
<?php
require_once './functions.php';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<?php echo '<link rel="stylesheet" href="' . auto_version('styles/output.css') . '" type="text/css">'; ?>
<?php echo '<script src="' . auto_version('scripts/functions.js') . '"></script>'; ?>
<?php echo '<link rel="manifest" href="' . auto_version('manifest.json') . '">'; ?>
<title>Account instellingen</title>
<link rel="icon" href="images/favicon.ico">
<link rel="apple-touch-icon" href="images/apple-touch-icon.png">
<script type="module">
import 'https://cdn.jsdelivr.net/npm/@pwabuilder/pwaupdate';
const el = document.createElement('pwa-update');
document.body.appendChild(el);
</script>
</head>
<body class="">
<header id="header" class="flex flex-col w-full py-5 text-3xl px-7 ">
<a href="index.php">
<span class="mb-3 text-primary">
<svg xmlns="http://www.w3.org/2000/svg" class="w-8 h-8 mb-5" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2">
<path stroke-linecap="round" stroke-linejoin="round" d="M11 15l-3-3m0 0l3-3m-3 3h8M3 12a9 9 0 1118 0 9 9 0 01-18 0z" />
</svg>
</span>
</a>
<p class="font-semibold">Account instellingen</p>
</header>
<main>
<div class="flex flex-col w-full px-7">
<div class="flex flex-col w-full mb-5">
<a href="cleanOldItems.php" class="flex items-center w-full px-2 py-2 pl-4 text-left text-white rounded-full bg-primary">
Verwijder oude afgeronde items
</a>
</div>
</div>
</main>
<footer id="footer" class="fixed bottom-0 flex items-center justify-end w-full max-w-md ">
<a href="logout.php" class="flex justify-center w-1/2 py-5 text-xl text-white rounded-tl-full bg-primary">Log uit</a>
</footer>
</body>
</html>