mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
24 lines
488 B
Vue
24 lines
488 B
Vue
<template>
|
|
<div>
|
|
<div class="header pb-8 pt-5 pt-lg-8 d-flex align-items-center profile-header"></div>
|
|
|
|
<b-container fluid class="mt--6">
|
|
<b-row>
|
|
<b-col xl="12" class="order-xl-1">
|
|
<edit-profile-form></edit-profile-form>
|
|
</b-col>
|
|
</b-row>
|
|
</b-container>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import EditProfileForm from './UserProfile/EditProfileForm.vue'
|
|
|
|
export default {
|
|
components: {
|
|
EditProfileForm,
|
|
},
|
|
}
|
|
</script>
|
|
<style></style>
|