OLD | NEW |
---|---|
(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> | |
OLD | NEW |