|
|
@@ -58,10 +58,10 @@ class InstallerForm extends React.Component {
|
|
|
<div className="row">
|
|
|
<form role="form" action="/installer" method="post" id="register-form" className="col-md-12">
|
|
|
<div className="form-group text-center">
|
|
|
- <div className="form-check">
|
|
|
+ <div className="custom-control custom-radio custom-control-inline">
|
|
|
<input
|
|
|
type="radio"
|
|
|
- className="form-check-input"
|
|
|
+ className="custom-control-input"
|
|
|
id="register-form-check-en"
|
|
|
name="registerForm[app:globalLang]"
|
|
|
value="en-US"
|
|
|
@@ -69,14 +69,14 @@ class InstallerForm extends React.Component {
|
|
|
inline
|
|
|
onChange={(e) => { if (e.target.checked) { this.changeLanguage('en-US') } }}
|
|
|
/>
|
|
|
- <label className="form-check-label" htmlFor="register-form-check-en">
|
|
|
+ <label className="custom-control-label" htmlFor="register-form-check-en">
|
|
|
English
|
|
|
</label>
|
|
|
</div>
|
|
|
- <div className="form-check">
|
|
|
+ <div className="custom-control custom-radio custom-control-inline">
|
|
|
<input
|
|
|
type="radio"
|
|
|
- className="form-check-input"
|
|
|
+ className="custom-control-input"
|
|
|
id="register-form-check-jp"
|
|
|
name="registerForm[app:globalLang]"
|
|
|
value="ja"
|
|
|
@@ -84,7 +84,7 @@ class InstallerForm extends React.Component {
|
|
|
inline
|
|
|
onChange={(e) => { if (e.target.checked) { this.changeLanguage('ja') } }}
|
|
|
/>
|
|
|
- <label className="form-check-label" htmlFor="register-form-check-jp">
|
|
|
+ <label className="custom-control-label" htmlFor="register-form-check-jp">
|
|
|
日本語
|
|
|
</label>
|
|
|
</div>
|