Files
fnx_web/res/template/email_confirm.html

36 lines
806 B
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"}}
{{template "user_style" .}}
</head>
<body>
{{template "page_top" .}}
2022-01-03 14:02:50 +01:00
<div class="limit_width">
{{if eq .Other "success"}}
2019-12-17 19:28:30 +01:00
<h1>Success!</h1>
<p>
Your account's e-mail address has been updated.
</p>
2022-01-03 14:02:50 +01:00
{{else if eq .Other "not_found"}}
2019-12-17 19:28:30 +01:00
<h1>E-mail change failed</h1>
<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>
2022-01-03 14:02:50 +01:00
{{else}}
2019-12-17 19:28:30 +01:00
<h1>Error</h1>
<p>
Something went wrong while processing this request. Please
try again later.
</p>
2022-01-03 14:02:50 +01:00
{{end}}
2019-12-17 19:28:30 +01:00
</div>
{{template "page_bottom" .}}
{{template "analytics"}}
</body>
</html>
{{end}}