Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: index.html

Issue 29646555: Issue 6210 - Implement Subscription (Double-opt-in) template for newsletter (Closed)
Patch Set: Addressed comments Created Dec. 22, 2017, 4:28 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « img/abp-logo.svg ('k') | package.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: index.html
===================================================================
new file mode 100644
--- /dev/null
+++ b/index.html
@@ -0,0 +1,43 @@
+<!doctype html>
+<html lang="en" dir="ltr">
+<head>
+ <!-- website-defaults/includes/meta/standard -->
+ <meta charset="utf-8">
+ <meta http-equiv="x-ua-compatible" content="ie=edge">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ <title>Adblock Plus newsletter signup form</title>
+ <meta name="description" content="A newsletter sign up form, so users can stay up to date with all things related to Adblock Plus.">
+
+ <!-- Resources -->
+ <link rel="stylesheet" type="text/css" href="css/main.min.css">
+</head>
+<body>
+ <div class="outer-container">
+ <div class="container phablet-width">
+
+ <header id="page-header">
+ <figure>
+ <img src="https://eyeo.com/images/backclick/abp-logo.png" srcset="https://eyeo.com/images/backclick/abp-logo.svg 2x" alt="ABP inside red octagon">
+ <figcaption>Adblock <strong>Plus</strong></figcaption>
+ </figure>
+ <h1>Sign up for the Adblock Plus newsletter</h1>
+ <p>Stay up to date with all things Adblock Plus</p>
+ </header>
+
+ <form id="sign-up">
+ <label for="email">Email Address *</label>
+ <input type="email" id="email" name="email" required>
+ <div class="error-message">Please enter a valid email address</div>
+
+ <label for="fullname">Full name</label>
+ <input type="text" id="fullname" name="fullname">
+
+ <button type="submit" class="secondary">Sign Up</button>
+ </form>
+ <footer id="page-footer">
+ <a href="https://eyeo.com/en/privacy" target="_blank">Privacy Policy</a>
+ </footer>
+ </div>
+ </div>
+</body>
+</html>
« no previous file with comments | « img/abp-logo.svg ('k') | package.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld