profile_cleanup.html (1021B)
1 <!doctype html> 2 3 <!-- This Source Code Form is subject to the terms of the Mozilla Public 4 - License, v. 2.0. If a copy of the MPL was not distributed with this 5 - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> 6 7 <html> 8 <head> 9 <meta charset="UTF-8" /> 10 <meta http-equiv="X-UA-Compatible" content="IE=8" /> 11 12 <link rel="stylesheet" href="stub_common.css" /> 13 <link rel="stylesheet" href="profile_cleanup_page.css" /> 14 15 <script src="stub_common.js"></script> 16 <script src="profile_cleanup.js"></script> 17 </head> 18 <body> 19 <img id="background" src="bgstub.jpg" alt="" role="presentation" /> 20 21 <form id="profileRefreshForm"> 22 <h1 id="header"></h1> 23 24 <div id="refreshCheckboxContainer"> 25 <input id="refreshCheckbox" type="checkbox" checked /> 26 <label id="checkboxLabel" for="refreshCheckbox"></label> 27 </div> 28 29 <div id="refreshButtonContainer"> 30 <button type="submit" id="refreshButton"></button> 31 </div> 32 </form> 33 </body> 34 </html>