Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(201)

Side by Side Diff: remoting/webapp/crd/html/dialog_auth.html

Issue 1023943004: Use a separate window to notify the user that permissions are required. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <!-- 1 <!--
2 Copyright (c) 2014 The Chromium Authors. All rights reserved. 2 Copyright (c) 2014 The Chromium Authors. All rights reserved.
garykac 2015/03/23 23:25:33 For consistency, it seems like this should have a
Jamie 2015/04/15 00:02:57 My understanding is that we use a crd_ prefix for
3 Use of this source code is governed by a BSD-style license that can be 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. 4 found in the LICENSE file.
5 --> 5 -->
6 <div id="auth-dialog" hidden> 6 <div id="auth-dialog" hidden>
7 7
8 <div class="dialog-screen"></div> 8 <div class="dialog-screen"></div>
9 9
10 <div class="dialog-container"> 10 <div class="dialog-container">
11 <div id="auth-dialog-border" class="kd-modaldialog"> 11 <div id="auth-dialog-border" class="kd-modaldialog">
12 <h2 i18n-content="MODE_AUTHORIZE"></h2> 12 <h2 i18n-content="MODE_AUTHORIZE"></h2>
13 <p id="auth-error-message" 13 <p id="auth-error-message"
14 i18n-content="DESCRIPTION_AUTHORIZE" 14 i18n-content="DESCRIPTION_AUTHORIZE"
15 class="message"></p> 15 class="message"></p>
16 <div class="button-row"> 16 <div class="button-row">
17 <button id="auth-button" 17 <button id="auth-button"
18 type="button" 18 type="button"
19 autofocus="autofocus" 19 autofocus="autofocus"
20 i18n-content="CONTINUE_BUTTON"> 20 i18n-content="CONTINUE_BUTTON">
21 </button> 21 </button>
22 </div> 22 </div>
23 </div> 23 </div>
24 </div> 24 </div>
25 25
26 </div> <!-- auth-dialog --> 26 </div> <!-- auth-dialog -->
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698