fleet/frontend/interfaces/registration_form_data.js
Mike Stone c1866c48c4 User registration (#453)
* RegistrationPage with Breadcrumbs

* Registration Form

* client-side validations

* Form page headers and description

* Form HOC
2016-11-16 11:58:25 -05:00

14 lines
372 B
JavaScript

import { PropTypes } from 'react';
export default PropTypes.shape({
full_name: PropTypes.string,
username: PropTypes.string,
password: PropTypes.string,
password_confirmation: PropTypes.string,
email: PropTypes.string,
org_name: PropTypes.string,
org_web_url: PropTypes.string,
org_logo_url: PropTypes.string,
kolide_web_address: PropTypes.string,
});