Disallow back button if username forced

feature/cd
garrettmills 4 years ago
parent 4f8c4d641f
commit f371310620
No known key found for this signature in database
GPG Key ID: 6ACD58D6ADACFC6E

@ -65,12 +65,14 @@ export default class AuthLoginForm extends Component {
loading = false
error_message = ''
other_message = ''
allow_back = true
watch_username(new_username, old_username) {
this.btn_disabled = !new_username
}
back_click() {
if ( !this.allow_back ) return;
this.step_two = false
this.button_text = 'Next'
}
@ -78,6 +80,7 @@ export default class AuthLoginForm extends Component {
async vue_on_create() {
const auth_user = await auth_api.get_authenticated_user()
if ( auth_user ) {
this.allow_back = false
this.username = auth_user
await this.step_click()
}

Loading…
Cancel
Save