Last active
June 23, 2020 16:00
-
-
Save amcgregor/21df21d052ce58c9ffdaf842c1a9bd8b to your computer and use it in GitHub Desktop.
A demonstration of how to properly implement: https://cornershop.intercom-mail.com/subscriptions/unsubscribe?app_id=a3ull92d&conversation_id=28302503362521&user_id=5eaeff40279e15d5097d3acf
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<title>Unsubscribed</title> | |
<style> | |
body { min-height: 100vh; display: flex; align-items: center; justify-content: center; font-family: "Helvetica Neue", Arial, sans-serif } | |
main { width: 500px; margin: 10px; text-align: center } | |
h1 { color: #90A4AE; font-size: 24px; line-height: 29px; font-weight: normal } | |
h2 { color: #3B9F55; font-size: 25px; line-height: 30px; border: 3px solid #3B9F55; padding: 36px 20px } | |
a { color: #90A4AE } | |
p { color: #90A4AE; font-size: 13px; line-height: 20px } | |
</style> | |
<main> | |
<h1>Cornershop</h1> | |
<h2>You have been unsubscribed.</h2> | |
<p> | |
Do you believe this message to be spam? | |
<a href=/subscriptions/report_spam>Let us know your opinion.</a> | |
<p> | |
Unsubscribed in error? | |
<a href=/subscriptions/resubscribe>Re-Subscribe.</a> | |
</main> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment