Skip to content
Snippets Groups Projects
Commit ad6399b1 authored by Anders Høvik's avatar Anders Høvik
Browse files

Fix: Change margin to fix footer

parent c87f713b
No related branches found
No related tags found
1 merge request!49Fix/edit footer
......@@ -36,7 +36,7 @@ export type UserStoreInfo = {
accessToken?: string;
role?: string;
};
//todo Fix if there is time
export const useUserInfoStore = defineStore('UserInfoStore', {
state: () => ({
email: '',
......
......@@ -8,14 +8,14 @@ import FooterAlternative from "@/components/BaseComponents/FooterAlternative.vue
<template>
<Menu></Menu>
<div style="display: flex; flex-direction: row;">
<!--<div style="display: flex; flex-direction: row;">
<img v-for="item in 7" src="@/assets/coca.webp" style="width: 100%; height: 100px; margin: 5px; border-radius: 1rem;" alt="picture">
</div>
</div>-->
<div>
<RouterView />
</div>
<div style="display: flex; flex-direction: row;">
<!-- <div style="display: flex; flex-direction: row;">
<img v-for="item in 7" src="@/assets/coca.webp" style="width: 100%; height: 100px; margin: 5px; border-radius: 1rem;" alt="picture">
</div>
</div> -->
<FooterAlternative></FooterAlternative>
</template>
\ No newline at end of file
......@@ -6,12 +6,18 @@
<div class="form-group">
<label class="d-block">Change Password</label>
<input type="text" class="form-control" placeholder="Enter your old password">
<input type="text" class="form-control mt-1" placeholder="New password">
<input type="text" class="form-control mt-1" placeholder="Confirm new password">
<input type="text" class="form-control mt-3" placeholder="New password">
<input type="text" class="form-control mt-3 mb-2" placeholder="Confirm new password">
</div>
<button type="button" class="btn btn-primary">Update Password</button>
<button type="reset" class="btn btn-light">Reset Changes</button>
</form>
<hr>
</div>
</template>
\ No newline at end of file
</template>
<script setup lang="ts">
</script>
<style scoped>
</style>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment