-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d97f2f6
commit 83feebf
Showing
8 changed files
with
198 additions
and
42 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<template> | ||
<v-app> | ||
<Navbar></Navbar> | ||
<v-main class="d-flex align-center justify-center mb-12 mt-12" height="80%"> | ||
<div v-if="pending" class="text-center"> | ||
<v-progress-circular | ||
:size="70" | ||
:width="7" | ||
color="purple-darken-1" | ||
indeterminate | ||
class="mb-5" | ||
></v-progress-circular> | ||
<h2 class="mt-12 mb-5">Creating image . . .</h2> | ||
<p>Please wait your image will be ready in few minutes.</p> | ||
</div> | ||
</v-main> | ||
<Footer></Footer> | ||
</v-app> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
import { ref } from "vue"; | ||
import Navbar from "./Navbar.vue"; | ||
import Footer from "./Footer.vue"; | ||
const pending = ref<boolean>(true); | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<template> | ||
<v-footer class="bg-grey-darken-3 d-flex justify-center"> | ||
All rights reserved © 2024 - <span> Codescalers Egypt</span> | ||
</v-footer> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
<template> | ||
<v-app-bar> | ||
<v-app-bar-nav-icon> | ||
<v-img src=""></v-img> | ||
</v-app-bar-nav-icon> | ||
<v-spacer> | ||
</v-spacer> | ||
</v-app-bar> | ||
<v-app-bar class="bg-purple-darken-1"> | ||
<v-app-bar-nav-icon class="ml-8"> | ||
<v-img :src="whiteLogo" contain height="50px" width="50px"></v-img> | ||
</v-app-bar-nav-icon> | ||
<v-spacer> </v-spacer> | ||
<v-btn to="Create">Create flist</v-btn> | ||
<v-btn to="Flists">View List</v-btn> | ||
</v-app-bar> | ||
</template> | ||
|
||
|
||
<script setup lang="ts"> | ||
import whiteLogo from "../assets/logo_white.png"; | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters