Ghost/core/frontend/views/unsubscribe.hbs

19 lines
584 B
Handlebars
Raw Normal View History

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>
{{#if member}}Successfully Unsubscribed{{/if}}
{{#if error}}Unsubscribe Failed{{/if}}
</title>
</head>
<body>
<p><a href="{{@site.url}}">Back to site</a></p>
<p>
{{#if member}}Success! {{member.email}} has been successfully unsubscribed.{{/if}}
{{#if error}}Uh oh! Unsubscribe failed: "{{error}}"{{/if}}
</p>
</body>
</html>