OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html i18n-values="dir:textdirection"> | 2 <html i18n-values="dir:textdirection"> |
3 <head> | 3 <head> |
| 4 <meta charset="utf-8"> |
4 <link rel="stylesheet" href="dialog.css"> | 5 <link rel="stylesheet" href="dialog.css"> |
5 <style> | 6 <style> |
6 body { | 7 body { |
7 margin: 10px 10px 0 10px; | 8 margin: 10px 10px 0 10px; |
8 -webkit-user-select: none; | 9 -webkit-user-select: none; |
9 } | 10 } |
10 | 11 |
11 form { | 12 form { |
12 margin: 0; | 13 margin: 0; |
13 } | 14 } |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 </td> | 116 </td> |
116 </tr> | 117 </tr> |
117 </table> | 118 </table> |
118 <div id="buttons"> | 119 <div id="buttons"> |
119 <input id="cancel" type="reset" i18n-values="value:cancel"> | 120 <input id="cancel" type="reset" i18n-values="value:cancel"> |
120 <input id="login" type="submit" i18n-values="value:signin"> | 121 <input id="login" type="submit" i18n-values="value:signin"> |
121 </div> | 122 </div> |
122 </form> | 123 </form> |
123 </body> | 124 </body> |
124 </html> | 125 </html> |
OLD | NEW |