1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 03:36:18 +02:00

Add login templates

This commit is contained in:
Dan Finlay 2018-03-19 11:30:45 -07:00
parent e504bc6215
commit 17371bb7ec

View File

@ -67,7 +67,7 @@ UnlockScreen.prototype.render = function () {
style: {
margin: 10,
},
}, 'Log In'),
}, t('login')),
h('p.pointer', {
onClick: () => {
@ -81,7 +81,7 @@ UnlockScreen.prototype.render = function () {
color: 'rgb(247, 134, 28)',
textDecoration: 'underline',
},
}, 'Restore from seed phrase'),
}, t('restoreFromSeed')),
h('p.pointer', {
onClick: () => {
@ -94,7 +94,7 @@ UnlockScreen.prototype.render = function () {
textDecoration: 'underline',
marginTop: '32px',
},
}, 'Use classic interface'),
}, t('classicInterface')),
])
)
}