OLD | NEW |
| (Empty) |
1 <!DOCTYPE html> | |
2 <html id="template_root" i18n-values="dir:textdirection"> | |
3 <head> | |
4 <title i18n-content="title"></title> | |
5 <style> | |
6 body { | |
7 font-family:Helvetica,Arial,sans-serif; | |
8 background-color:#FFCC00; | |
9 margin:0px; | |
10 } | |
11 .background { | |
12 position:absolute; | |
13 width:100%; | |
14 height:100%; | |
15 } | |
16 .cell { | |
17 padding:20px; | |
18 } | |
19 .box { | |
20 width:80%; | |
21 background-color:white; | |
22 color:black; | |
23 font-size:10pt; | |
24 line-height:16pt; | |
25 text-align:left; | |
26 padding:10px; | |
27 position:relative; | |
28 } | |
29 </style> | |
30 </head> | |
31 <body> | |
32 <table width="100%" cellspacing="0" cellpadding="0"> | |
33 <td class="cell" valign="middle" align="center"> | |
34 <div class="box"> | |
35 <div class="icon"><img src="phishing_icon.png" alt="Blocked Element Icon"/><
/div> | |
36 <p i18n-content="message"></p> | |
37 <ul style="list-style-type: none"> | |
38 <li><a i18n-values="href: url" i18n-content="name" target="_blank"></a></l
i> | |
39 </ul> | |
40 </div> | |
41 </td> | |
42 </table> | |
43 </body> | |
44 </html> | |
OLD | NEW |