Home | History | Annotate | Download | only in ssl
      1 <!DOCTYPE html>
      2 <!-- This SSL interstitial is designed to look like the Firefox SSL error, with
      3      permission from Firefox to copy the appearance of the page for an A/B
      4      experiment. -->
      5 <html i18n-values="dir:textdirection">
      6 <head>
      7   <meta charset="utf-8">
      8   <title>Untrusted Connection</title>
      9   <link rel="stylesheet" href="firefox.css">
     10   <script src="firefox.js"></script>
     11 </head>
     12 <body i18n-values=".style.fontFamily:fontfamily">
     13 <div id="box">
     14   <div id="inner-box">
     15     <div class="icon">
     16       <img src="firefox_icon.png" alt="SSL Error Icon" id="icon-img">
     17     </div>
     18 
     19     <div class="title">
     20       <h1 class="titleText">This Connection is Untrusted</h1>
     21     </div>
     22 
     23     <div class="main">
     24       <p>
     25         You have asked Chrome to connect securely to <b><span
     26         i18n-content="domain"></span></b>, but we can't confirm that your
     27         connection is secure.
     28       </p>
     29       <p>
     30         Normally, when you try to connect securely, sites will present trusted
     31         identification to prove that you are going to the right place. However,
     32         this site's identity can't be verified.
     33       </p>
     34     </div>
     35 
     36     <div class="main">
     37       <h2>What Should I Do?</h2>
     38       <p>
     39         If you usually connect to this site without problems, this error could
     40         mean that someone is trying to impersonate the site, and you shouldn't
     41         continue.
     42       </p>
     43       <button id="exit-button">Get me out of here!</button>
     44     </div>
     45 
     46     <div class="clickable">
     47       <img class="twisty" id="more-info-twisty-closed"
     48           src="firefox_twisty_closed.png" border="0">
     49       <img class="twisty" id="more-info-twisty-open"
     50           src="firefox_twisty_open.png" border="0" hidden>
     51       <h2 id="more-info-title" class="subtitle">Technical Details</h2>
     52       <div id="more-info-content" class="subtext" hidden>
     53         <p i18n-values=".innerHTML:moreInfo1"></p>
     54         <p i18n-values=".innerHTML:moreInfo2"></p>
     55         <p i18n-values=".innerHTML:moreInfo3"></p>
     56         <p i18n-values=".innerHTML:moreInfo4"></p>
     57         <p i18n-values=".innerHTML:moreInfo5"></p>
     58       </div>
     59     </div>
     60 
     61     <div class="clickable" id="proceed" hidden>
     62       <img class="twisty" id="understand-twisty-closed"
     63           src="firefox_twisty_closed.png" border="0">
     64       <img class="twisty" id="understand-twisty-open"
     65           src="firefox_twisty_open.png" border="0" hidden>
     66       <h2 id="understand-title" class="subtitle">I Understand the Risks</h2>
     67       <div id="understand-content" class="subtext" hidden>
     68         <p>
     69           If you understand what's going on, you can click the button below to
     70           proceed to the site. <b>Even if you trust the site, this error could
     71           mean that someone is tampering with your connection.</b>
     72         </p>
     73         <p>
     74           Don't proceed to the site unless you know there's a good reason why
     75           this site doesn't use trusted identification.
     76         </p>
     77         <button id="proceed-button">Proceed Anyway</button>
     78       </div>
     79     </div>
     80   </div>
     81 </div>
     82 
     83 </body>
     84 </html>
     85 
     86