mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-01 01:59:56 +00:00
Indicate valid and invalid fields in signup form (#1450)
* Use was-validated class in signup form * Update signup.tsx * Update signup.tsx --------- Co-authored-by: SleeplessOne1917 <abias1122@gmail.com>
This commit is contained in:
parent
022c27aec2
commit
dd09b3cade
1 changed files with 4 additions and 1 deletions
|
@ -140,7 +140,10 @@ export class Signup extends Component<any, State> {
|
|||
registerForm() {
|
||||
const siteView = this.state.siteRes.site_view;
|
||||
return (
|
||||
<form onSubmit={linkEvent(this, this.handleRegisterSubmit)}>
|
||||
<form
|
||||
className="was-validated"
|
||||
onSubmit={linkEvent(this, this.handleRegisterSubmit)}
|
||||
>
|
||||
<h5>{this.titleName(siteView)}</h5>
|
||||
|
||||
{this.isLemmyMl && (
|
||||
|
|
Loading…
Reference in a new issue