-
Notifications
You must be signed in to change notification settings - Fork 8
/
dialog_hangout_consent.html
36 lines (35 loc) · 1.33 KB
/
dialog_hangout_consent.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!doctype html>
<!--
Copyright 2014 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="dialog_hangout_consent.css">
<script type="text/javascript" src="base.js"></script>
<script type="text/javascript" src="hangout_consent_dialog_main.js"></script>
<script type="text/javascript" src="ipc.js"></script>
<script type="text/javascript" src="l10n.js"></script>
<script type="text/javascript" src="typecheck.js"></script>
</head>
<body>
<div class="header">
<div class="logo"></div>
<div class="title" i18n-content="MODE_IT2ME"></div>
</div>
<div class="content">
<div class="message" i18n-content="HANGOUTS_CONFIRM_DIALOG_MESSAGE_1"></div>
<ul>
<li i18n-content="HANGOUTS_CONFIRM_DIALOG_MESSAGE_2"></li>
<li i18n-content="HANGOUTS_CONFIRM_DIALOG_MESSAGE_3"></li>
<li i18n-content="DESCRIPTION_AUTHORIZE" class='auth-message'></li>
</ul>
<div class="footer">
<div class="button default ok-button" i18n-content="HANGOUTS_CONFIRM_DIALOG_ACCEPT"></div>
<div class="button cancel-button" i18n-content="HANGOUTS_CONFIRM_DIALOG_DECLINE"></div>
</div>
</div>
</body>
</html>