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

Unified Diff: chrome/browser/resources/login.html

Issue 7980012: [ChromeOS] Reland - Make WebUI login use only needed resources. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/resources/login.css ('k') | chrome/browser/resources/login.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/login.html
diff --git a/chrome/browser/resources/login.html b/chrome/browser/resources/login.html
deleted file mode 100644
index d6bf0d612c4815aa454cb58f1d9212293623f971..0000000000000000000000000000000000000000
--- a/chrome/browser/resources/login.html
+++ /dev/null
@@ -1,69 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
- <title i18n-content="title"></title>
- <link rel="stylesheet" href="common_oobe_login.css">
- <link rel="stylesheet" href="login.css">
- <!-- Don't scale the viewport in either portrait or landscape mode.
- Note that this means apps will be reflowed when rotated (like iPad).
- If we wanted to maintain position we could remove 'maximum-scale' so
- that we'd zoom out in portrait mode, but then there would be a bunch
- of unusable space at the bottom.
- -->
- <meta name="viewport"
- content="user-scalable=no, width=device-width, maximum-scale=1.0">
- <!-- If this page hasn't been run through grit and embedded into chrome, then
- load the standalone hacks -->
- <if expr="False">
- <script src="standalone/standalone_hack.js"></script>
- </if>
- <script src="chrome://resources/js/local_strings.js"></script>
- <script src="shared/js/event_tracker.js"></script>
- <script src="shared/js/util.js"></script>
- <script src="touchhandler.js"></script>
- <script src="slider.js"></script>
- <script src="login.js"></script>
-</head>
-<body tabIndex="-1">
- <div id="user-frame">
- <div id="user-slider-container">
- <hr id="topshadow">
- <div id="user-slider">
- <div id="user-list">
- <div class="user-card" id="add-user-card">
- <div class="user" user-index="0">
- <div class="user-image-border-box">
- <div class="user-image" id="add-user"></div>
- </div>
- <div id="add-user-box" hidden>
- <input type="text" class="editbox emailbox"
- i18n-values="placeholder:emailHint">
- <input type="password" class="editbox passwordbox"
- i18n-values="placeholder:passwordHint">
- <span class="adduserlabel" id="add-user-status-message"></span>
- </div>
- </div>
- </div>
- <div class="user-card" id="user-template" hidden>
- <div class="user">
- <div class="user-image-border-box">
- <div class="user-image"></div>
- <div class="delete-button" hidden>x</div>
- </div>
- <span>User name</span>
- <div class="user-login-box" hidden>
- <input type="password" class="editbox passwordbox">
- </div>
- <div class="guest-login-box" hidden>
- <!-- TODO(xiyuan): Localization -->
- <button class="loginbutton">Enter</button>
- </div>
- </div>
- </div>
- </div>
- </div>
- <hr id="bottomshadow">
- </div>
- </div>
-</body>
-</html>
« no previous file with comments | « chrome/browser/resources/login.css ('k') | chrome/browser/resources/login.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698