Files
fnx_web/res/template/email_confirm.html

51 lines
1.0 KiB
HTML
Raw Normal View History

2019-12-17 19:28:30 +01:00
{{define "email_confirm"}}<!DOCTYPE html>
2020-01-17 20:32:21 +01:00
<html lang="en">
2019-12-17 19:28:30 +01:00
<head>
{{template "meta_tags" "E-mail verification"}}
</head>
<body>
{{template "page_top" .}}
2022-01-11 13:28:22 +01:00
{{if eq .Other "success"}}
<header>
2019-12-17 19:28:30 +01:00
<h1>Success!</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">
<section>
<p>
Your account's e-mail address has been updated.
</p>
</section>
</div>
2022-01-11 13:28:22 +01:00
{{else if eq .Other "not_found"}}
<header>
2019-12-17 19:28:30 +01:00
<h1>E-mail change failed</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">
<section>
<p>
This e-mail change request does not exist or has expired.
Please try again if you still want to change your e-mail
address.
</p>
</section>
</div>
2022-01-11 13:28:22 +01:00
{{else}}
<header>
2019-12-17 19:28:30 +01:00
<h1>Error</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">
<section>
<p>
Something went wrong while processing this request. Please
try again later.
</p>
</section>
</div>
2022-01-11 13:28:22 +01:00
{{end}}
2019-12-17 19:28:30 +01:00
{{template "page_bottom" .}}
</body>
</html>
{{end}}