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 #4 and #5 Created Dec. 22, 2017, 10:39 a.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 Standard Metadata -->
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 <meta charset="utf-8">
9 <title>Adblock Plus newsletter signup form</title>
10 <meta name="description" content="A newsletter sign up form, so users can stay up to date with all things related to Adblock Plus.">
11
12 <!-- Resources -->
13 <link rel="stylesheet" type="text/css" href="css/main.min.css">
14 </head>
15 <body>
16 <div class="outer-container">
17 <div class="container phablet-width">
18
19 <header id="page-header">
20 <figure>
21 <img src="img/abp-logo.png" srcset="img/abp-logo.svg 2x" alt="ABP insi de red octagon">
22 <figcaption>Adblock <strong>Plus</strong></figcaption>
23 </figure>
24 <h1 class="lead"><strong>Sign up for the Adblock Plus newsletter</strong ></h1>
25 <p>Stay up to date with all things Adblock Plus</p>
26 </header>
27
28 <form id="sign-up">
29 <label for="email">Email Address *</label>
30 <input type="email" id="email" name="email" required>
31 <span class="error-message">Please enter a valid email address</span>
32
33 <label for="fullname">Full name</label>
34 <input type="text" id="fullname" name="fullname">
35
36 <button type="submit" class="secondary">Sign Up</button>
37 </form>
38 <footer id="page-footer">
39 <a href="https://adblockplus.org/en/privacy" target="_blank">Privacy Pol icy</a>
40 </footer>
41 </div>
42 </div>
43 </body>
44 </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