UserProfile.jsx
6.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
/*!
=========================================================
* Light Bootstrap Dashboard React - v1.3.0
=========================================================
* Product Page: https://www.creative-tim.com/product/light-bootstrap-dashboard-react
* Copyright 2019 Creative Tim (https://www.creative-tim.com)
* Licensed under MIT (https://github.com/creativetimofficial/light-bootstrap-dashboard-react/blob/master/LICENSE.md)
* Coded by Creative Tim
=========================================================
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
*/
import React, { Component } from "react";
import {
Grid,
Row,
Col,
FormGroup,
ControlLabel,
FormControl
} from "react-bootstrap";
import { Card } from "components/Card/Card.jsx";
import { FormInputs } from "components/FormInputs/FormInputs.jsx";
import { UserCard } from "components/UserCard/UserCard.jsx";
import Button from "components/CustomButton/CustomButton.jsx";
class UserProfile extends Component {
render() {
return (
<div className="content">
<Grid fluid>
<Row>
<Col md={8}>
<Card
title="Edit Profile"
content={
<form>
<FormInputs
ncols={["col-md-5", "col-md-3", "col-md-4"]}
properties={[
{
label: "Company (disabled)",
type: "text",
bsClass: "form-control",
placeholder: "Company",
defaultValue: "Creative Code Inc.",
disabled: true
},
{
label: "Username",
type: "text",
bsClass: "form-control",
placeholder: "Username",
defaultValue: "michael23"
},
{
label: "Email address",
type: "email",
bsClass: "form-control",
placeholder: "Email"
}
]}
/>
<FormInputs
ncols={["col-md-6", "col-md-6"]}
properties={[
{
label: "First name",
type: "text",
bsClass: "form-control",
placeholder: "First name",
defaultValue: "Mike"
},
{
label: "Last name",
type: "text",
bsClass: "form-control",
placeholder: "Last name",
defaultValue: "Andrew"
}
]}
/>
<FormInputs
ncols={["col-md-12"]}
properties={[
{
label: "Adress",
type: "text",
bsClass: "form-control",
placeholder: "Home Adress",
defaultValue:
"Bld Mihail Kogalniceanu, nr. 8 Bl 1, Sc 1, Ap 09"
}
]}
/>
<FormInputs
ncols={["col-md-4", "col-md-4", "col-md-4"]}
properties={[
{
label: "City",
type: "text",
bsClass: "form-control",
placeholder: "City",
defaultValue: "Mike"
},
{
label: "Country",
type: "text",
bsClass: "form-control",
placeholder: "Country",
defaultValue: "Andrew"
},
{
label: "Postal Code",
type: "number",
bsClass: "form-control",
placeholder: "ZIP Code"
}
]}
/>
<Row>
<Col md={12}>
<FormGroup controlId="formControlsTextarea">
<ControlLabel>About Me</ControlLabel>
<FormControl
rows="5"
componentClass="textarea"
bsClass="form-control"
placeholder="Here can be your description"
defaultValue="Lamborghini Mercy, Your chick she so thirsty, I'm in that two seat Lambo."
/>
</FormGroup>
</Col>
</Row>
<Button bsStyle="info" pullRight fill type="submit">
Update Profile
</Button>
<div className="clearfix" />
</form>
}
/>
</Col>
<Col md={4}>
<UserCard
bgImage="https://ununsplash.imgix.net/photo-1431578500526-4d9613015464?fit=crop&fm=jpg&h=300&q=75&w=400"
avatar={''}
name="Mike Andrew"
userName="michael24"
description={
<span>
"Lamborghini Mercy
<br />
Your chick she so thirsty
<br />
I'm in that two seat Lambo"
</span>
}
socials={
<div>
<Button simple>
<i className="fa fa-facebook-square" />
</Button>
<Button simple>
<i className="fa fa-twitter" />
</Button>
<Button simple>
<i className="fa fa-google-plus-square" />
</Button>
</div>
}
/>
</Col>
</Row>
</Grid>
</div>
);
}
}
export default UserProfile;