OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 sendCommand("proceed"); | 103 sendCommand("proceed"); |
104 } | 104 } |
105 | 105 |
106 function takeMeBack() { | 106 function takeMeBack() { |
107 sendCommand("takeMeBack"); | 107 sendCommand("takeMeBack"); |
108 } | 108 } |
109 </script> | 109 </script> |
110 </head> | 110 </head> |
111 | 111 |
112 <body oncontextmenu="return false;"> | 112 <body oncontextmenu="return false;"> |
113 <div class="background"><img src="../security/resources/ssl_roadblock_background
.png" width="100%" height="100%" alt="background" onmousedown="return false;"/><
/div> | 113 <div class="background"><img src="ssl_roadblock_background.png" width="100%" hei
ght="100%" alt="background" onmousedown="return false;"/></div> |
114 <table width="100%" cellspacing="0" cellpadding="0"> | 114 <table width="100%" cellspacing="0" cellpadding="0"> |
115 <td class="cell" valign="middle" align="center"> | 115 <td class="cell" valign="middle" align="center"> |
116 <div class="box"> | 116 <div class="box"> |
117 <div class="icon"><img src="shared/images/phishing_icon.png" alt="Malware
Icon" onmousedown="return false;"/></div> | 117 <div class="icon"><img src="shared/images/phishing_icon.png" alt="Malware
Icon" onmousedown="return false;"/></div> |
118 <div class="title" i18n-content="headLine"></div> | 118 <div class="title" i18n-content="headLine"></div> |
119 <div class="main" i18n-values=".innerHTML:description1"></div> | 119 <div class="main" i18n-values=".innerHTML:description1"></div> |
120 <div class="main" i18n-content="description2"></div> | 120 <div class="main" i18n-content="description2"></div> |
121 <div class="main" id="template_root"> | 121 <div class="main" id="template_root"> |
122 <table cellpadding="5" jsvalues="$counter:{value: 0}"> | 122 <table cellpadding="5" jsvalues="$counter:{value: 0}"> |
123 <tr jsselect="errors" class="errorlist"> | 123 <tr jsselect="errors" class="errorlist"> |
(...skipping 10 matching lines...) Expand all Loading... |
134 <input name="checky" id="checky" type="checkbox" onclick="agreed(this.
form)"> <label for="checky" i18n-content="confirm_text"></label> | 134 <input name="checky" id="checky" type="checkbox" onclick="agreed(this.
form)"> <label for="checky" i18n-content="confirm_text"></label> |
135 <input type="button" name="continue_button" i18n-values="value:continu
e_button" disabled="true" onclick="proceed();"><br> | 135 <input type="button" name="continue_button" i18n-values="value:continu
e_button" disabled="true" onclick="proceed();"><br> |
136 <input type="button" name="back_button" i18n-values="value:back_button
" onclick="takeMeBack()"> | 136 <input type="button" name="back_button" i18n-values="value:back_button
" onclick="takeMeBack()"> |
137 </form> | 137 </form> |
138 </div> | 138 </div> |
139 </div> | 139 </div> |
140 </td> | 140 </td> |
141 </table> | 141 </table> |
142 </body> | 142 </body> |
143 </html> | 143 </html> |
OLD | NEW |