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

Side by Side Diff: chrome/browser/resources/feedback/html/default.html

Issue 2728773003: Make email field in Feedback app uneditable (Closed)
Patch Set: More nits Created 3 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 <!doctype html> 1 <!doctype html>
2 <html i18n-values="dir:textdirection;lang:language"> 2 <html i18n-values="dir:textdirection;lang:language">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> 5 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
6 <link rel="stylesheet" href="chrome://resources/css/apps/common.css"></link> 6 <link rel="stylesheet" href="chrome://resources/css/apps/common.css"></link>
7 <link rel="stylesheet" href="chrome://resources/css/apps/topbutton_bar.css"></li nk> 7 <link rel="stylesheet" href="chrome://resources/css/apps/topbutton_bar.css"></li nk>
8 <link rel="stylesheet" href="../css/feedback.css"> 8 <link rel="stylesheet" href="../css/feedback.css">
9 9
10 <script src="chrome://resources/js/load_time_data.js"></script> 10 <script src="chrome://resources/js/load_time_data.js"></script>
11 <script src="chrome://resources/js/i18n_template_no_process.js"></script> 11 <script src="chrome://resources/js/i18n_template_no_process.js"></script>
12 <script src="chrome://resources/js/util.js"></script> 12 <script src="chrome://resources/js/util.js"></script>
13 <script src="../js/data.js"></script> 13 <script src="../js/data.js"></script>
14 <script src="../js/take_screenshot.js"></script> 14 <script src="../js/take_screenshot.js"></script>
15 <script src="../js/topbar_handlers.js"></script> 15 <script src="../js/topbar_handlers.js"></script>
16 <script src="../js/feedback.js"></script> 16 <script src="../js/feedback.js"></script>
17 </head> 17 </head>
18 <body> 18 <body>
19 <div id="title-bar" class="title-bar"> 19 <div id="title-bar" class="title-bar">
20 <span id="page-title" i18n-content="page-title"></span> 20 <span id="page-title" i18n-content="page-title"></span>
21 <span class="topbutton-bar"> 21 <span class="topbutton-bar">
22 <button class="minimize-button" id="minimize-button" tabindex="-1"> 22 <button class="minimize-button" id="minimize-button" tabindex="-1"
23 i18n-values="aria-label:minimize-btn-label">
23 </button> 24 </button>
24 <button class="close-button" id="close-button" tabindex="-1"> 25 <button class="close-button" id="close-button" tabindex="-1"
26 i18n-values="aria-label:close-btn-label">
25 </button> 27 </button>
26 </span> 28 </span>
27 </div> 29 </div>
28 <div id="srt-prompt" class="content"> 30 <div id="srt-prompt" class="content">
29 <img src="../../../../../components/resources/sadtab.svg" class="srt-image"> 31 <img src="../../../../../components/resources/sadtab.svg" class="srt-image">
30 <p i18n-content="srtPromptBody" class="srt-body"></p> 32 <p i18n-content="srtPromptBody" class="srt-body"></p>
31 <div class="buttons-pane top-buttons"> 33 <div class="buttons-pane top-buttons">
32 <button id="srt-decline-button" class="white-button" 34 <button id="srt-decline-button" class="white-button"
33 i18n-content="srtPromptDeclineButton"> 35 i18n-content="srtPromptDeclineButton">
34 </button> 36 </button>
35 <button id="srt-accept-button" class="blue-button" 37 <button id="srt-accept-button" class="blue-button"
36 i18n-content="srtPromptAcceptButton"> 38 i18n-content="srtPromptAcceptButton">
37 </button> 39 </button>
38 </div> 40 </div>
39 </div> 41 </div>
40 <div id="content-pane" class="content"> 42 <div id="content-pane" class="content">
41 <textarea id="description-text" aria-labelledby="title-bar"></textarea> 43 <textarea id="description-text" aria-labelledby="title-bar"></textarea>
42 <div> 44 <div>
43 <p id="additional-info-label" i18n-content="additionalInfo"><p> 45 <p id="additional-info-label" i18n-content="additionalInfo"><p>
44 </div> 46 </div>
45 <div id="page-url" class="text-field-container"> 47 <div id="page-url" class="text-field-container">
46 <label id="page-url-label" i18n-content="page-url"></label> 48 <label id="page-url-label" i18n-content="page-url"></label>
47 <input id="page-url-text" aria-labelledby="page-url-label" type="text"> 49 <input id="page-url-text" aria-labelledby="page-url-label" type="text">
48 </div> 50 </div>
49 <!-- User e-mail --> 51 <!-- User e-mail -->
50 <div id="user-email" class="text-field-container"> 52 <div id="user-email" class="text-field-container">
51 <label id="user-email-label" i18n-content="user-email"></label> 53 <label id="user-email-label" i18n-content="user-email"></label>
52 <input id="user-email-text" aria-labelledby="user-email-label" type="text" > 54 <select id="user-email-drop-down" aria-labelledby="user-email-label">
55 <option id="anonymous-user-option" value="anonymous_user"
56 i18n-content="anonymous-user"></option>
57 </select>
53 </div> 58 </div>
54 <!-- Attach a file --> 59 <!-- Attach a file -->
55 <div id="attach-file-container" class="text-field-container"> 60 <div id="attach-file-container" class="text-field-container">
56 <label id="attach-file-label" i18n-content="attach-file-label"></label> 61 <label id="attach-file-label" i18n-content="attach-file-label"></label>
57 <input id="attach-file" type="file" aria-labelledby="attach-file-label"> 62 <input id="attach-file" type="file" aria-labelledby="attach-file-label">
58 <div id="custom-file-container" hidden> 63 <div id="custom-file-container" hidden>
59 <label id="attached-filename-text"></label> 64 <label id="attached-filename-text"></label>
60 <button id="remove-attached-file" class="remove-file-button"></button> 65 <button id="remove-attached-file" class="remove-file-button"></button>
61 </div> 66 </div>
62 <div id="attach-error" class="attach-file-notification" 67 <div id="attach-error" class="attach-file-notification"
(...skipping 27 matching lines...) Expand all
90 <button id="cancel-button" type="submit" 95 <button id="cancel-button" type="submit"
91 class="white-button" i18n-content="cancel"> 96 class="white-button" i18n-content="cancel">
92 </button> 97 </button>
93 <button id="send-report-button" type="submit" 98 <button id="send-report-button" type="submit"
94 class="blue-button" i18n-content="send-report"> 99 class="blue-button" i18n-content="send-report">
95 </button> 100 </button>
96 </div> 101 </div>
97 </div> 102 </div>
98 </body> 103 </body>
99 </html> 104 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/feedback/css/feedback.css ('k') | chrome/browser/resources/feedback/js/feedback.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698