Bring in the change password section

This also changes the layout slightly in the user settings, but nothing detrimental.
This commit is contained in:
Travis Ralston
2019-01-23 09:28:53 -07:00
parent 677b3ca7b5
commit 19de6694ca
7 changed files with 94 additions and 36 deletions
+5
View File
@@ -31,6 +31,11 @@ export default class Field extends React.PureComponent {
// To define options for a select, use <Field><option ... /></Field>
element: PropTypes.string,
// All other props pass through to the <input>.
};
get value() {
if (!this.refs.fieldInput) return null;
return this.refs.fieldInput.value;
}
render() {