17 lines
318 B
HTML
17 lines
318 B
HTML
|
<!DOCTYPE html>
|
||
|
<head>
|
||
|
<link rel="stylesheet" href="style.css"/>
|
||
|
<script src="htmx.min.js"></script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div hx-confirm="Are you sure?">
|
||
|
<button hx-delete="/account">
|
||
|
Delete My Account
|
||
|
</button>
|
||
|
<button hx-put="/account">
|
||
|
Update My Account
|
||
|
</button>
|
||
|
</div>
|
||
|
|
||
|
|
||
|
</body>
|