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:
parent
d34edaada1
commit
80a57d350c
@ -63,7 +63,9 @@ class CreatePasswordScreen extends Component {
|
||||
return password === confirmPassword
|
||||
}
|
||||
|
||||
createAccount = () => {
|
||||
createAccount = (event) => {
|
||||
event.preventDefault()
|
||||
|
||||
if (!this.isValid()) {
|
||||
return
|
||||
}
|
||||
@ -127,7 +129,7 @@ class CreatePasswordScreen extends Component {
|
||||
It allows you to hold ether & tokens, and interact with decentralized applications.
|
||||
</div>
|
||||
</div>}
|
||||
<div className="create-password">
|
||||
<form className="create-password">
|
||||
<div className="create-password__title">
|
||||
Create Password
|
||||
</div>
|
||||
@ -188,7 +190,7 @@ class CreatePasswordScreen extends Component {
|
||||
</a>
|
||||
{ */ }
|
||||
<Breadcrumbs total={3} currentIndex={0} />
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user