Skip to content

Commit

Permalink
Add AvatarForm into User#EditPage
Browse files Browse the repository at this point in the history
  • Loading branch information
gocreating committed Oct 28, 2016
1 parent d15c247 commit a896caa
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/common/components/pages/user/EditPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import Col from 'react-bootstrap/lib/Col';
import Button from 'react-bootstrap/lib/Button';
import PageLayout from '../../layouts/PageLayout';
import EditForm from '../../forms/user/EditForm';
import AvatarForm from '../../forms/user/AvatarForm';
import ChangePasswordForm from '../../forms/user/ChangePasswordForm';

let EditPage = () => {
Expand All @@ -24,6 +25,10 @@ let EditPage = () => {
<PageHeader>Edit Profile</PageHeader>
<EditForm />
</Col>
<Col md={6}>
<PageHeader>Upload Avatar</PageHeader>
<AvatarForm />
</Col>
<Col md={6}>
<PageHeader>Change Password</PageHeader>
<ChangePasswordForm />
Expand Down

0 comments on commit a896caa

Please sign in to comment.