blob: 5268b21626ad5d1bd0098947bf6c3d04409bd5fb [file] [log] [blame]
// Licensed under the Apache License, Version 2.0 (the "License"); you may not
// use this file except in compliance with the License. You may obtain a copy of
// the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
// License for the specific language governing permissions and limitations under
// the License.
import PropTypes from 'prop-types';
import React from 'react';
import { Form } from 'react-bootstrap';
export default class SetupCurrentAdminPassword extends React.Component {
render() {
let text = 'Specify your Admin credentials';
if (this.props.isAdminParty) {
text = 'Create Admin credentials.';
}
return (
<div className="row">
<div className="col-12">
<label>{text}</label>
</div>
<div className="col-12 col-md-5 col-xl-4 mb-3">
<Form.Control type="text"
onChange={this.props.onAlterUsername}
placeholder="Username"
value={this.props.username} />
</div>
<div className="col-12 col-md-5 col-xl-4 mb-3">
<Form.Control type="password"
onChange={this.props.onAlterPassword}
placeholder="Password"
value={this.props.password} />
</div>
</div>
);
}
}
SetupCurrentAdminPassword.propTypes = {
onAlterUsername: PropTypes.func.isRequired,
onAlterPassword: PropTypes.func.isRequired,
username: PropTypes.string.isRequired,
password: PropTypes.string.isRequired,
isAdminParty: PropTypes.bool
};