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

Side by Side 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.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « img/abp-logo.svg ('k') | package.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!doctype html>
2 <html lang="en" dir="ltr">
3 <head>
4 <!-- website-defaults/includes/meta/standard -->
5 <meta charset="utf-8">
6 <meta http-equiv="x-ua-compatible" content="ie=edge">
7 <meta name="viewport" content="width=device-width, initial-scale=1">
8 <title>Adblock Plus newsletter signup form</title>
9 <meta name="description" content="A newsletter sign up form, so users can stay up to date with all things related to Adblock Plus.">
10
11 <!-- Resources -->
12 <link rel="stylesheet" type="text/css" href="css/main.min.css">
13 </head>
14 <body>
15 <div class="outer-container">
16 <div class="container phablet-width">
17
18 <header id="page-header">
19 <figure>
20 <img src="https://eyeo.com/images/backclick/abp-logo.png" srcset="http s://eyeo.com/images/backclick/abp-logo.svg 2x" alt="ABP inside red octagon">
21 <figcaption>Adblock <strong>Plus</strong></figcaption>
22 </figure>
23 <h1>Sign up for the Adblock Plus newsletter</h1>
24 <p>Stay up to date with all things Adblock Plus</p>
25 </header>
26
27 <form id="sign-up">
28 <label for="email">Email Address *</label>
29 <input type="email" id="email" name="email" required>
30 <div class="error-message">Please enter a valid email address</div>
31
32 <label for="fullname">Full name</label>
33 <input type="text" id="fullname" name="fullname">
34
35 <button type="submit" class="secondary">Sign Up</button>
36 </form>
37 <footer id="page-footer">
38 <a href="https://eyeo.com/en/privacy" target="_blank">Privacy Policy</a>
39 </footer>
40 </div>
41 </div>
42 </body>
43 </html>
OLDNEW
« 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