async onSubmitVerification()

in website/src/auth/SignUp.js [45:56]


  async onSubmitVerification(e) {
    e.preventDefault();
    console.log('Verification Submitted');
    this.setState({ 
      stage: 0, code: '',
      email: '', phone: '', 
      password: '', genre: '',
      confirm: ''
    });
    // Go back to the home page
    this.props.history.replace('/');
  }