1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Improvement: Allow enter to submit password form

This commit is contained in:
Sean Rabaut 2018-09-14 15:45:21 -04:00
parent d34edaada1
commit 80a57d350c

View File

@ -63,7 +63,9 @@ class CreatePasswordScreen extends Component {
return password === confirmPassword return password === confirmPassword
} }
createAccount = () => { createAccount = (event) => {
event.preventDefault()
if (!this.isValid()) { if (!this.isValid()) {
return return
} }
@ -127,7 +129,7 @@ class CreatePasswordScreen extends Component {
It allows you to hold ether & tokens, and interact with decentralized applications. It allows you to hold ether & tokens, and interact with decentralized applications.
</div> </div>
</div>} </div>}
<div className="create-password"> <form className="create-password">
<div className="create-password__title"> <div className="create-password__title">
Create Password Create Password
</div> </div>
@ -188,7 +190,7 @@ class CreatePasswordScreen extends Component {
</a> </a>
{ */ } { */ }
<Breadcrumbs total={3} currentIndex={0} /> <Breadcrumbs total={3} currentIndex={0} />
</div> </form>
</div> </div>
</div> </div>
) )