gradido/frontend/src/views/Pages/UserProfile/EditProfileForm.vue

135 lines
3.5 KiB
Vue
Executable File

<template>
<card style="background-color: #ebebeba3 !important">
<b-form @submit.prevent="updateProfile">
<h6 class="heading-small text-muted mb-4">User information</h6>
<div class="pl-lg-4">
<b-row>
<b-col lg="6">
<base-input
type="text"
label="Username"
placeholder="Username"
v-model="user.username"
></base-input>
</b-col>
<b-col lg="6">
<base-input
type="email"
label="Email address"
placeholder="mike@email.com"
v-model="user.email"
></base-input>
</b-col>
</b-row>
<b-row>
<b-col lg="6">
<base-input
type="text"
label="First Name"
placeholder="First Name"
v-model="user.firstName"
></base-input>
</b-col>
<b-col lg="6">
<base-input
type="text"
label="Last Name"
placeholder="Last Name"
v-model="user.lastName"
></base-input>
</b-col>
</b-row>
</div>
<hr class="my-4" />
<!-- Address -->
<h6 class="heading-small text-muted mb-4">Contact information</h6>
<div class="pl-lg-4">
<b-row>
<b-col md="12">
<base-input
type="text"
label="Address"
placeholder="Home Address"
v-model="user.address"
></base-input>
</b-col>
</b-row>
<b-row>
<b-col lg="4">
<base-input
type="text"
label="City"
placeholder="City"
v-model="user.city"
></base-input>
</b-col>
<b-col lg="4">
<base-input
type="text"
label="Country"
placeholder="Country"
v-model="user.country"
></base-input>
</b-col>
<b-col lg="4">
<base-input
label="Postal Code"
placeholder="ZIP Code"
v-model="user.postalCode"
></base-input>
</b-col>
</b-row>
</div>
<hr class="my-4" />
<!-- Description -->
<h6 class="heading-small text-muted mb-4">About me</h6>
<div class="pl-lg-4">
<b-form-group
label="About Me"
label-class="form-control-label"
class="mb-0"
label-for="about-form-textaria"
>
<!-- <label class="form-control-label">About Me</label> -->
<b-form-textarea
rows="4"
value="A beautiful premium dashboard for BootstrapVue."
id="about-form-textaria"
placeholder="A few words about you ..."
></b-form-textarea>
</b-form-group>
</div>
</b-form>
</card>
</template>
<script>
export default {
data() {
return {
user: {
company: 'Creative Code Inc.',
username: 'michael23',
email: '',
firstName: 'Mike',
lastName: 'Andrew',
address: 'Bld Mihail Kogalniceanu, nr. 8 Bl 1, Sc 1, Ap 09',
city: 'New York',
country: 'USA',
postalCode: '',
aboutMe: `Lamborghini Mercy, Your chick she so thirsty, I'm in that two seat Lambo.`,
},
}
},
methods: {
updateProfile() {
alert('Your data: ' + JSON.stringify(this.user))
},
},
}
</script>
<style></style>