1<!DOCTYPE html>
2<html i18n-values="dir:textdirection;">
3<head>
4<meta charset="utf-8">
5<title i18n-content="title"></title>
6<link rel="stylesheet" href="/ntp4/incognito_and_guest_tab.css">
7<link rel="stylesheet" href="login/enterprise_info.css">
8<script>
9// Until themes can clear the cache, force-reload the theme stylesheet.
10document.write('<link id="incognitothemecss" rel="stylesheet" ' +
11               'href="chrome://theme/css/incognito_new_tab_theme.css?' +
12               Date.now() + '">');
13</script>
14</head>
15<body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
16<div id="enterprise-info" location="guest-tab"
17     i18n-values="visible:enterpriseInfoVisible;">
18  <img src="chrome://theme/IDR_CONTROLLED_SETTING_MANDATORY"/>
19  <span id="enterprise-info-message" i18n-content="enterpriseInfoMessage">
20  </span>
21  <a id="enterprise-info-hint-link" i18n-content="enterpriseLearnMore"
22      i18n-values=".href:enterpriseInfoHintLink"></a>
23</div>
24<div class="content">
25  <h1 i18n-content="guestTabHeading"></h1>
26  <p>
27    <span i18n-content="guestTabDescription"></span>
28    <a i18n-content="learnMore" i18n-values=".href:learnMoreLink"></a>
29  </p>
30</div>
31</body>
32<script>
33function themeChanged() {
34  document.getElementById('incognitothemecss').href =
35      'chrome://theme/css/incognito_new_tab_theme.css?' + Date.now();
36}
37</script>
38</html>
39
40