Merge pull request #3482 from nandedamana/issue/gh-3182-teacher-reg-form-diff-font-weights

fixed the issue "Create a Username" has different font weight
This commit is contained in:
Benjamin Wheeler 2019-12-05 22:52:44 -05:00 committed by GitHub
commit 7031bc5dfe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -195,17 +195,15 @@ class UsernameStep extends React.Component {
}}
onValidSubmit={this.handleValidSubmit}
>
<div>
<div className="username-label">
<b>
{this.props.intl.formatMessage({id: 'registration.createUsername'})}
</b>
<div className="form-group row">
<label className="username-label col-sm-3">
{this.props.intl.formatMessage({id: 'registration.createUsername'})}
{this.props.usernameHelp ? (
<p className="help-text">{this.props.usernameHelp}</p>
) : (
null
)}
</div>
</label>
<Input
required
className={this.state.validUsername}