Left: | ||
Right: |
OLD | NEW |
---|---|
(Empty) | |
1 <!--**************************************************************************** *** | |
2 * Sign Up Page | |
3 ****************************************************************************** - -> | |
4 <!doctype html> | |
5 <html lang="en" dir="ltr"> | |
6 <head> | |
7 <!-- website-defaults/includes/meta/standard --> | |
8 <meta charset="utf-8"> | |
9 <meta http-equiv="x-ua-compatible" content="ie=edge"> | |
10 <meta name="viewport" content="width=device-width, initial-scale=1"> | |
11 <title>Newsletter Signup</title> | |
12 <meta name="description" content="A newsletter sign up form, so users can stay up to date with all things related to Adblock Plus."> | |
13 | |
14 <!-- styles:start --> | |
15 <!-- styles:end --> | |
16 | |
17 <!--FILTER-COMMENTS--> | |
18 </head> | |
19 <body> | |
20 <div class="outer-container"> | |
21 <div class="container phone-width content"> | |
22 | |
23 <header id="page-header"> | |
24 <figure> | |
25 <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"> | |
26 <figcaption>Adblock <strong>Plus</strong></figcaption> | |
juliandoucette
2018/01/22 19:47:55
This appears on two lines when I test?
ire
2018/01/23 08:48:12
You mean the "Plus" appears on a second line? I ca
juliandoucette
2018/01/23 17:00:47
Yes. It seems to be because there is not enough sp
| |
27 </figure> | |
28 | |
29 <!--NEW-USER--> | |
30 <h1>Sign up for the Adblock Plus Newsletter</h1> | |
31 <p>Stay up to date with all things Adblock Plus</p> | |
32 <p><span class="color-secondary">*</span> Indicated required details</p> | |
33 <!--/NEW-USER--> | |
34 | |
35 <!--UNCONFIRMED--><!--SUCCESS--> | |
juliandoucette
2018/01/22 19:47:54
NIT: It's inconvenient that these are all visible
ire
2018/01/23 08:48:10
I agree that it's inconvenient, but I don't think
juliandoucette
2018/01/23 17:00:48
I agree with you in the short-term (hence NIT). An
| |
36 <h1>Confirm your email</h1> | |
37 <p>You should have received an email with a confirmation link. Please cl ick the link to confirm your email and subscribe</p> | |
juliandoucette
2018/01/22 19:47:55
NIT: Missing period according to spec
ire
2018/01/23 08:48:11
Done.
| |
38 <!--/SUCCESS--><!--/UNCONFIRMED--> | |
39 | |
40 <!--CONFIRMED--><!--SUCCESS--> | |
41 <h1>Thank you for subscribing to the <strong>Adblock Plus</strong> newsl etter</h1> | |
juliandoucette
2018/01/22 19:47:55
NIT: Missing period according to spec
ire
2018/01/23 08:48:11
Done.
| |
42 <p>We look forward to sharing our updates with you</p> | |
43 <!--/SUCCESS--><!--/CONFIRMED--> | |
44 </header> | |
45 | |
46 <!--NEW-USER--> | |
47 <form name="abonnenten_anmeldung" action="web.subscribe?tid=14&mid=0" meth od="post" id="sign-up"> | |
48 | |
49 <div> | |
50 <label for="email">Email Address <abbr title="required" class="color-s econdary">*</abbr></label> | |
51 | |
52 <?GIS EMAIL params="id='email' type='email' class='<!--ERROR:INCORRECT -EMAIL-->invalid<!--/ERROR:INCORRECT-EMAIL--><!--ERROR:NO-EMAIL-->invalid<!--/ER ROR:NO-EMAIL--><!--ALREADY-CONFIRMED--><!--ERROR-->invalid<!--/ERROR--><!--/ALRE ADY-CONFIRMED--><!--ERROR:ALREADY-ON-10-->invalid<!--/ERROR:ALREADY-ON-10-->' re quired" mandatory?> | |
53 | |
54 <!--ERROR:NO-EMAIL--> | |
55 <div class="error-message">Please provide an email address</div> | |
56 <!--/ERROR:NO-EMAIL--> | |
57 | |
58 <!--ERROR:INCORRECT-EMAIL--> | |
59 <div class="error-message">Please enter a valid email address</div> | |
60 <!--/ERROR:INCORRECT-EMAIL--> | |
61 | |
62 <!--ERROR:ALREADY-ON-10--> | |
63 <div class="error-message">You have already subscribed to this newslet ter</div> | |
64 <!--/ERROR:ALREADY-ON-10--> | |
65 | |
66 <!--ALREADY-CONFIRMED--><!--ERROR--> | |
67 <div class="error-message">You have already subscribed to this newslet ter</div> | |
68 <!--/ERROR--><!--/ALREADY-CONFIRMED--> | |
69 </div> | |
70 | |
71 <div> | |
72 <label for="fullname">Full name</label> | |
73 <?GIS FULLNAME params="id='fullname'"?> | |
74 </div> | |
75 | |
76 <!--ERROR:NO-PASSWORD--> | |
juliandoucette
2018/01/22 19:47:56
If we are going to include these then I think we s
ire
2018/01/23 08:48:12
Since they aren't in the spec I'll remove them for
juliandoucette
2018/01/23 17:00:47
Acknowledged.
| |
77 <p>Error: No Password</p><br> | |
78 <!--/ERROR:NO-PASSWORD--> | |
79 | |
80 <!--ERROR:WRONG-PASSWORD--> | |
81 <p>Error: Wrong Password</p><br> | |
82 <!--/ERROR:WRONG-PASSWORD--> | |
83 | |
84 <!--ERROR:INCORRECT-PASSWORD--> | |
85 <p>Error: Incorrect Password</p><br> | |
86 <!--/ERROR:INCORRECT-PASSWORD--> | |
87 | |
88 <?GIS NEWSLETTER 10 checked hidden?> | |
89 | |
90 <button type="submit" class="secondary">Sign Up</button> | |
91 </form> | |
92 <footer id="page-footer"> | |
93 <a href="https://eyeo.com/en/privacy" target="_blank" class="color-secon dary">Privacy Policy</a> | |
94 </footer> | |
95 <!--/NEW-USER--> | |
96 | |
97 </div> | |
98 </div> | |
99 </body> | |
100 </html> | |
OLD | NEW |