|
|
|
@ -81,8 +81,6 @@ function AuthenticationRequiredModalContent(props) {
|
|
|
|
|
/>
|
|
|
|
|
</FormGroup>
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
authenticationEnabled ?
|
|
|
|
|
<FormGroup>
|
|
|
|
|
<FormLabel>Authentication Required</FormLabel>
|
|
|
|
|
|
|
|
|
@ -94,12 +92,8 @@ function AuthenticationRequiredModalContent(props) {
|
|
|
|
|
onChange={onInputChange}
|
|
|
|
|
{...authenticationRequired}
|
|
|
|
|
/>
|
|
|
|
|
</FormGroup> :
|
|
|
|
|
null
|
|
|
|
|
}
|
|
|
|
|
</FormGroup>
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
authenticationEnabled ?
|
|
|
|
|
<FormGroup>
|
|
|
|
|
<FormLabel>Username</FormLabel>
|
|
|
|
|
|
|
|
|
@ -109,12 +103,8 @@ function AuthenticationRequiredModalContent(props) {
|
|
|
|
|
onChange={onInputChange}
|
|
|
|
|
{...username}
|
|
|
|
|
/>
|
|
|
|
|
</FormGroup> :
|
|
|
|
|
null
|
|
|
|
|
}
|
|
|
|
|
</FormGroup>
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
authenticationEnabled ?
|
|
|
|
|
<FormGroup>
|
|
|
|
|
<FormLabel>Password</FormLabel>
|
|
|
|
|
|
|
|
|
@ -124,9 +114,7 @@ function AuthenticationRequiredModalContent(props) {
|
|
|
|
|
onChange={onInputChange}
|
|
|
|
|
{...password}
|
|
|
|
|
/>
|
|
|
|
|
</FormGroup> :
|
|
|
|
|
null
|
|
|
|
|
}
|
|
|
|
|
</FormGroup>
|
|
|
|
|
</div> :
|
|
|
|
|
null
|
|
|
|
|
}
|
|
|
|
|