2021-06-18 20:33:45 +00:00
|
|
|
import PropTypes from "prop-types";
|
|
|
|
|
|
|
|
export default PropTypes.shape({
|
2021-06-24 20:42:29 +00:00
|
|
|
name: PropTypes.string,
|
2021-06-18 20:33:45 +00:00
|
|
|
password: PropTypes.string,
|
|
|
|
password_confirmation: PropTypes.string,
|
|
|
|
email: PropTypes.string,
|
|
|
|
org_name: PropTypes.string,
|
|
|
|
org_web_url: PropTypes.string,
|
|
|
|
org_logo_url: PropTypes.string,
|
|
|
|
fleet_web_address: PropTypes.string,
|
|
|
|
});
|
|
|
|
|
|
|
|
export interface IRegistrationFormData {
|
2021-06-24 20:42:29 +00:00
|
|
|
name: string;
|
2021-06-18 20:33:45 +00:00
|
|
|
password: string;
|
|
|
|
password_confirmation: string;
|
|
|
|
email: string;
|
|
|
|
org_name: string;
|
|
|
|
org_web_url: string;
|
|
|
|
org_logo_url: string;
|
|
|
|
fleet_web_address: string;
|
2021-09-10 23:53:28 +00:00
|
|
|
server_url: string;
|
2021-06-18 20:33:45 +00:00
|
|
|
}
|