Sha256: 15e4e252f6ea63c4e7720caf32259109146d93ea961e136824ec6d5c0db9d070
Contents?: true
Size: 733 Bytes
Versions: 10
Compression:
Stored size: 733 Bytes
Contents
<!DOCTYPE html> <html> <head> <title>Subscriptions</title> <style> body { padding: 20px; font-family: "Helvetica Neue", Arial, Helvetica, sans-serif; font-size: 14px; line-height: 1.4; } a { color: blue; } .container { max-width: 500px; margin-left: auto; margin-right: auto; } </style> </head> <body> <div class="container"> <% if !subscribed? %> <p>You are unsubscribed.</p> <p><%= link_to "Resubscribe", subscribe_url %></p> <% else %> <p>You are subscribed.</p> <p><%= link_to "Unsubscribe", unsubscribe_url %></p> <% end %> </div> </body> </html>
Version data entries
10 entries across 10 versions & 1 rubygems