2021-01-28 03:08:57 -08:00
|
|
|
import React from 'react';
|
2023-01-09 15:00:53 -08:00
|
|
|
import { EditInstanceDetails } from '../../../../../components/config/EditInstanceDetails2';
|
2020-12-30 18:07:15 -08:00
|
|
|
|
|
|
|
export default function ConfigServerDetails() {
|
|
|
|
return (
|
2021-01-03 23:32:47 -08:00
|
|
|
<div className="config-server-details-form">
|
2021-02-12 23:55:59 -08:00
|
|
|
<p className="description">
|
2022-12-27 18:48:21 -08:00
|
|
|
You should change your admin password from the default and keep it safe. For most people
|
2021-02-12 23:55:59 -08:00
|
|
|
it's likely the other settings will not need to be changed.
|
2021-02-04 12:41:35 -08:00
|
|
|
</p>
|
2021-02-12 23:55:59 -08:00
|
|
|
<div className="form-module config-server-details-container">
|
2022-09-07 09:00:28 +02:00
|
|
|
<EditInstanceDetails />
|
2021-01-31 01:38:20 -08:00
|
|
|
</div>
|
2021-01-03 23:32:47 -08:00
|
|
|
</div>
|
2021-01-31 01:38:20 -08:00
|
|
|
);
|
2020-12-30 18:07:15 -08:00
|
|
|
}
|