react-bootstrap#HelpBlock TypeScript Examples
The following examples show how to use
react-bootstrap#HelpBlock.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: Signup.tsx From tutorial-cloudflare-bookstore with Apache License 2.0 | 5 votes |
showSignupForm = () => {
return (
<form onSubmit={this.onSignup}>
<FormGroup controlId="email" validationState={this.state.emailValid}>
<ControlLabel>Email</ControlLabel>
<FormControl
name="email"
type="email"
bsSize="large"
value={this.state.email}
onChange={this.onEmailChange}
/>
<FormControl.Feedback />
</FormGroup>
<FormGroup
controlId="password"
validationState={this.state.passwordValid}
>
<ControlLabel>Password</ControlLabel>
<FormControl
name="password"
type="password"
bsSize="large"
value={this.state.password}
onChange={this.onPasswordChange}
/>
<FormControl.Feedback />
<HelpBlock>Must be at least 8 characters</HelpBlock>
</FormGroup>
<FormGroup
controlId="confirmPassword"
validationState={this.state.confirmPasswordValid}
>
<ControlLabel>Confirm Password</ControlLabel>
<FormControl
name="confirmPassword"
type="password"
bsSize="large"
value={this.state.confirmPassword}
onChange={this.onConfirmPasswordChange}
/>
<FormControl.Feedback />
</FormGroup>
<Button
block
bsSize="large"
type="submit"
disabled={
this.state.passwordValid !== "success" ||
this.state.confirmPasswordValid !== "success" ||
this.state.emailValid !== "success"
}
>
{this.state.loading && (
<Glyphicon glyph="refresh" className="spinning" />
)}
Log in
</Button>
</form>
);
};