-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Feat: wrap logo in router link for improved navigation * Style: update button color and icon color for better visibility in Create.vue * Feat: add password visibility toggle and generate password functionality in Create.vue * Feat: add tooltips for password visibility toggle and generate password buttons in Create.vue * Feat: enhance layout and styling for main app and error pages * Feat: add animations to various components for improved user experience * Feat: update changelog for version 1.0.5 with UI enhancements, password management features, and 404 error page improvements * Fix code scanning alert no. 20: Insecure randomness Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> --------- Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
- Loading branch information
1 parent
534bcc2
commit 18b9435
Showing
7 changed files
with
135 additions
and
52 deletions.
There are no files selected for viewing
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
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
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,21 +1,32 @@ | ||
<template> | ||
<div class="error-page"> | ||
<h2>Page Not Found</h2> | ||
<p>The requested page does not exist.</p> | ||
<router-link to="/">Go Back</router-link> | ||
</div> | ||
</template> | ||
|
||
<script setup> | ||
/** | ||
* Basic 404 error page. | ||
*/ | ||
</script> | ||
|
||
<style scoped> | ||
.error-page { | ||
text-align: center; | ||
margin-top: 2rem; | ||
} | ||
</style> | ||
|
||
<v-container class="error-page d-flex flex-column align-center justify-center fill-height"> | ||
<v-card class="pa-6 text-center" elevation="4" max-width="500"> | ||
<v-icon size="80" color="red">mdi-alert-circle-outline</v-icon> | ||
<h2 class="text-h4 mt-4">Oops! Page Not Found</h2> | ||
<p class="mt-2 mb-4 text-body-1"> | ||
The page you are looking for does not exist or has been moved. | ||
</p> | ||
<v-btn to="/" color="primary" large> | ||
<v-icon left>mdi-home</v-icon> | ||
Go Home | ||
</v-btn> | ||
</v-card> | ||
</v-container> | ||
</template> | ||
|
||
<script setup> | ||
/** | ||
* 404 Error Page Component. | ||
*/ | ||
</script> | ||
|
||
<style scoped> | ||
.error-page { | ||
min-height: 100vh; | ||
} | ||
.v-card { | ||
background-color: #f5f5f5; | ||
border-radius: 12px; | ||
} | ||
</style> |
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,2 +1,2 @@ | ||
#Application version following https://semver.org/ | ||
version: 1.0.4 | ||
version: 1.0.5 |