Files
fnx_web/res/template/user_logout.html

42 lines
1.2 KiB
HTML
Raw Normal View History

2018-06-23 21:17:53 +02:00
{{define "logout"}}<!DOCTYPE html>
2020-01-17 20:32:21 +01:00
<html lang="en">
2018-06-23 21:17:53 +02:00
<head>
{{template "meta_tags" "Logging out..."}}
2018-06-23 21:17:53 +02:00
</head>
<body>
2019-09-17 23:38:40 +02:00
{{template "page_top" .}}
2022-01-11 13:28:22 +01:00
<header>
<h1>Logging out of your pixeldrain account</h1>
2022-01-11 13:28:22 +01:00
</header>
2022-10-11 14:21:06 +02:00
<div id="page_content" class="page_content">
<br/>
<form method="POST" action="/logout">
<button role="submit" class="button_highlight">
<i class="icon">logout</i>
Log out of pixeldrain on this computer
</button>
</form>
<br/>
<section>
<h2>Why do I need to confirm my logout?</h2>
<p>
We need you to confirm your action so we can be sure that you
really requested a logout. If we didn't do this, anyone (or any
website) would be able to send you to this page and you would
automatically get logged out of pixeldrain, which would be very
annoying.
</p>
<p>
To prevent this from happening we're verifying that you actually
want to log out by making you click this button. Because this
logout button triggers a different request type than normal
page visit we can confirm that you really want to log out.
</p>
</section>
</div>
2019-09-17 23:38:40 +02:00
{{template "page_bottom" .}}
2018-06-23 21:17:53 +02:00
{{template "analytics"}}
</body>
</html>
{{end}}