update edit / login / responsive
All checks were successful
frontend-action / build-image (push) Successful in 57s

This commit is contained in:
2024-04-23 18:57:44 +07:00
parent b1e2d326a5
commit e5683c7f2b
26 changed files with 1884 additions and 88 deletions

View File

@@ -0,0 +1,33 @@
<template lang="">
<div>
<div class="hearder-form-edit text-center pb-6 mt-2">
<v-img
class="mx-auto"
:aspect-ratio="1"
src="@/assets/logo-title.png"
width="200"
></v-img>
<div class="text-title txt-black">
อมลสวนต
</div>
<v-icon icon="mdi-circle" color="white" class="mt-2"></v-icon>
</div>
<FormSteper/>
</div>
</template>
<script>
import FormSteper from './FormSteperEdit.vue';
export default {
components:{
FormSteper
}
};
</script>
<style>
.hearder-form-edit {
background-color: #B2C573;
width: 100%;
height: auto;
}
</style>