| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html id="template_root" i18n-values="dir:textdirection"> | 2 <html id="template_root" i18n-values="dir:textdirection"> |
| 3 <head> | 3 <head> |
| 4 <title i18n-content="title"></title> | 4 <title i18n-content="title"></title> |
| 5 <style> | 5 <style> |
| 6 body { | 6 body { |
| 7 background-color:#500; | 7 background-color:#500; |
| 8 font-family:Helvetica,Arial,sans-serif; | 8 font-family:Helvetica,Arial,sans-serif; |
| 9 margin:0px; | 9 margin:0px; |
| 10 } | 10 } |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 function agreed(form) { | 78 function agreed(form) { |
| 79 form.continue_button.disabled = !form.continue_button.disabled; | 79 form.continue_button.disabled = !form.continue_button.disabled; |
| 80 } | 80 } |
| 81 </script> | 81 </script> |
| 82 </head> | 82 </head> |
| 83 <body oncontextmenu="return false;"> | 83 <body oncontextmenu="return false;"> |
| 84 <div class="background"><img src="../security/resources/ssl_roadblock_background
.png" width="100%" height="100%" alt="background" onmousedown="return false;"/><
/div> | 84 <div class="background"><img src="../security/resources/ssl_roadblock_background
.png" width="100%" height="100%" alt="background" onmousedown="return false;"/><
/div> |
| 85 <table width="100%" cellspacing="0" cellpadding="0"> | 85 <table width="100%" cellspacing="0" cellpadding="0"> |
| 86 <td class="cell" valign="middle" align="center"> | 86 <td class="cell" valign="middle" align="center"> |
| 87 <div class="box"> | 87 <div class="box"> |
| 88 <div class="icon"><img src="phishing_icon.png" alt="Malware Icon" onmoused
own="return false;"/></div> | 88 <div class="icon"><img src="shared/images/phishing_icon.png" alt="Malware
Icon" onmousedown="return false;"/></div> |
| 89 <div class="title" i18n-content="headLine"></div> | 89 <div class="title" i18n-content="headLine"></div> |
| 90 <div class="main" i18n-values=".innerHTML:description1"></div> | 90 <div class="main" i18n-values=".innerHTML:description1"></div> |
| 91 <div class="main" i18n-values=".innerHTML:description2"></div> | 91 <div class="main" i18n-values=".innerHTML:description2"></div> |
| 92 <div class="main"><a href="" i18n-content="description3" onclick="sendComm
and('learnMore'); return false;" onmousedown="return false;"></a></div> | 92 <div class="main"><a href="" i18n-content="description3" onclick="sendComm
and('learnMore'); return false;" onmousedown="return false;"></a></div> |
| 93 <div class="main"> | 93 <div class="main"> |
| 94 <form class="submission"> | 94 <form class="submission"> |
| 95 <input name="checky" id="checky" type="checkbox" onclick="agreed(this.
form)"> <label for="checky" i18n-content="confirm_text"></label> | 95 <input name="checky" id="checky" type="checkbox" onclick="agreed(this.
form)"> <label for="checky" i18n-content="confirm_text"></label> |
| 96 <input type="button" name="continue_button" i18n-values="value:continu
e_button" disabled="true" onclick="sendCommand('proceed')"><br> | 96 <input type="button" name="continue_button" i18n-values="value:continu
e_button" disabled="true" onclick="sendCommand('proceed')"><br> |
| 97 <input type="button" name="back_button" i18n-values="value:back_button
" onclick="sendCommand('takeMeBack')"> | 97 <input type="button" name="back_button" i18n-values="value:back_button
" onclick="sendCommand('takeMeBack')"> |
| 98 </form> | 98 </form> |
| 99 </div> | 99 </div> |
| 100 </div> | 100 </div> |
| 101 </td> | 101 </td> |
| 102 </table> | 102 </table> |
| 103 </body> | 103 </body> |
| 104 </html> | 104 </html> |
| OLD | NEW |