fix: text changes in login and signup forms
This commit is contained in:
parent
09f40b73b3
commit
a08b635369
3 changed files with 3 additions and 3 deletions
|
|
@ -38,7 +38,7 @@ class ManageUsers extends React.PureComponent {
|
|||
}
|
||||
|
||||
adminLabel = (user) => {
|
||||
if (user.superAdmin) return 'Super Admin';
|
||||
if (user.superAdmin) return 'Owner';
|
||||
return user.admin ? 'Admin' : '';
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -63,7 +63,7 @@ export default class Login extends React.Component {
|
|||
<form onSubmit={ this.onSubmit }>
|
||||
<div className="mb-8">
|
||||
<h2 className="text-center text-3xl mb-6">Login to OpenReplay</h2>
|
||||
{ tenants.length === 0 && <div className="text-center text-xl">Don't have an account?<span className="link"><Link to={ SIGNUP_ROUTE }>Sign up</Link></span></div> }
|
||||
{ tenants.length === 0 && <div className="text-center text-xl">Don't have an account? <span className="link"><Link to={ SIGNUP_ROUTE }>Sign up</Link></span></div> }
|
||||
</div>
|
||||
<Loader loading={ loading }>
|
||||
{ window.ENV.CAPTCHA_ENABLED && (
|
||||
|
|
|
|||
|
|
@ -137,7 +137,7 @@ export default class SignupForm extends React.Component {
|
|||
</div>
|
||||
|
||||
<div className="mb-6">
|
||||
<div className="text-sm">By creating an account, you agree to our <a href="https://openreplay.com/terms.html" className="link">Terms of Service</a> and <a href="https://openreplay.com/privacy.html" className="link">Privacy Policy</a></div>
|
||||
<div className="text-sm">By creating an account, you agree to our <a href="https://openreplay.com/terms.html" className="link">Terms of Service</a> and <a href="https://openreplay.com/privacy.html" className="link">Privacy Policy</a>.</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue