Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(38)

Side by Side Diff: chrome/browser/resources/ssl/captive_portal.html

Issue 318213002: Add custom interstitial for captive portals. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Const all the things Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html i18n-values="dir:textdirection;.style.fontSize:fontsize">
3 <head>
mmenke 2014/06/24 18:09:26 I wonder if we can just reuse interstitial_v2.html
meacer 2014/10/22 23:04:28 Done. I refactored security interstitials to share
4 <meta charset="utf-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1.0,
6 maximum-scale=1.0, user-scalable=no">
7 <title i18n-content="title"></title>
8 <link rel="stylesheet" href="../../../renderer/resources/neterror.css">
9 <script src="../../../../ui/webui/resources/js/load_time_data.js"></script>
10 <script src="../../../../ui/webui/resources/js/util.js"></script>
11 <script src="captive_portal.js"></script>
12 </head>
13 <body>
14 <div id="main-frame-error">
15 <div id="box">
16 <div id="content-top">
17 <h1>
18 <div>
19 <img class="icon icon-offline">
20 </div>
21 <span i18n-content="heading"></span>
22 </h1>
23 <p i18n-values=".innerHTML:primaryParagraph"></p>
24 <div id="buttons">
25 <button class="blue-button text-button"
26 id="primary-button" i18n-content="primaryButtonText"></button>
27 <button id="details-button" class="text-button"
28 i18n-content="openDetails"></button>
29 </div>
30
31 <div id="details" class="hidden">
32 <p i18n-values=".innerHTML:explanationParagraph"></p>
33 </div>
34 </div>
35 </div>
36 </div>
37 </body>
38 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698