1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01: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: { style: {
margin: 10, margin: 10,
}, },
}, 'Log In'), }, t('login')),
h('p.pointer', { h('p.pointer', {
onClick: () => { onClick: () => {
@ -81,7 +81,7 @@ UnlockScreen.prototype.render = function () {
color: 'rgb(247, 134, 28)', color: 'rgb(247, 134, 28)',
textDecoration: 'underline', textDecoration: 'underline',
}, },
}, 'Restore from seed phrase'), }, t('restoreFromSeed')),
h('p.pointer', { h('p.pointer', {
onClick: () => { onClick: () => {
@ -94,7 +94,7 @@ UnlockScreen.prototype.render = function () {
textDecoration: 'underline', textDecoration: 'underline',
marginTop: '32px', marginTop: '32px',
}, },
}, 'Use classic interface'), }, t('classicInterface')),
]) ])
) )
} }