aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/unlock.js
diff options
context:
space:
mode:
authorkumavis <aaron@kumavis.me>2016-05-14 09:07:47 +0800
committerkumavis <aaron@kumavis.me>2016-05-14 09:07:47 +0800
commit49e08f9013572e7168f258000ae20b35f337f969 (patch)
tree17f79ff844abe1f2666b59281fc301c2b91bc44a /ui/app/unlock.js
parentd6a8b0b90a465231c694d6d9e33aa10ba003d80f (diff)
downloadtangerine-wallet-browser-49e08f9013572e7168f258000ae20b35f337f969.tar.gz
tangerine-wallet-browser-49e08f9013572e7168f258000ae20b35f337f969.tar.zst
tangerine-wallet-browser-49e08f9013572e7168f258000ae20b35f337f969.zip
ui - redesign - unlock menu
Diffstat (limited to 'ui/app/unlock.js')
-rw-r--r--ui/app/unlock.js18
1 files changed, 12 insertions, 6 deletions
diff --git a/ui/app/unlock.js b/ui/app/unlock.js
index 8aac1b1ff..512906c67 100644
--- a/ui/app/unlock.js
+++ b/ui/app/unlock.js
@@ -29,19 +29,25 @@ UnlockScreen.prototype.render = function() {
h('.unlock-screen.flex-column.flex-center.flex-grow', [
- h('h2.page-subtitle', 'Welcome!'),
-
h(Mascot, {
animationEventEmitter: this.animationEventEmitter,
}),
- h('label', {
- htmlFor: 'password-box',
- }, 'Enter Password:'),
+ h('h1', {
+ style: {
+ fontSize: '1.4em',
+ textTransform: 'uppercase',
+ color: '#7F8082',
+ },
+ }, 'MetaMask'),
- h('input', {
+ h('input.password-box', {
type: 'password',
id: 'password-box',
+ placeholder: 'enter password',
+ style: {
+
+ },
onKeyPress: this.onKeyPress.bind(this),
onInput: this.inputChanged.bind(this),
}),