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:arial; | 8 font-family:Helvetica,Arial,sans-serif; |
9 margin:0px; | 9 margin:0px; |
10 } | 10 } |
11 .background { | 11 .background { |
12 position:absolute; | 12 position:absolute; |
13 width:100%; | 13 width:100%; |
14 height:100%; | 14 height:100%; |
15 } | 15 } |
16 .cell { | 16 .cell { |
17 padding:40px; | 17 padding:40px; |
18 } | 18 } |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after 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 |