Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hotfix #90

Merged
merged 2 commits into from
Aug 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ This project is part of the [Stellar Smart Contract Challenge](https://dev.to/ch

We built a blockchain-based voting platform using Stellar Smart Contracts. VoteVault is a secure and transparent voting platform that allows users to create and participate in voting processes. Find out more about our journey building VoteVault in the [Dev.to post](https://dev.to/gr1ll/votevault-our-journey-from-a-lunchtime-idea-to-dapp-2opf) or visit the [VoteVault website](https://vv.danieljancar.dev).

**Note**: Our Smart Contracts are still deployed on the [Stellar Testnet](https://developers.stellar.org/docs/learn/fundamentals/networks#testnet) and can't be used for a large audience yet. The application currently serves as a proof-of-concept and fully functioning prototype. 🌱
**Note**: Our Smart Contracts are still deployed on the [Stellar Testnet](https://developers.stellar.org/docs/learn/fundamentals/networks#testnet) and can't be used for a large audience yet. Also we can't ensure full auth security and integrity. The application currently serves as a proof-of-concept and fully functioning prototype. 🌱

# Table of Contents

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ <h1 class="font-bold">Your public and secret keys</h1>
to your account!
<button
(click)="downloadSecretKey()"
class="hover:underline font-medium cursor-pointer text-yellow-800 hover:text-yellow-600 focus:outline-none focus:underline focus:text-yellow-600"
class="underline font-medium cursor-pointer text-yellow-800 hover:text-yellow-600 focus:outline-none focus:underline focus:text-yellow-600"
role="button"
tabindex="0"
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ <h1 class="font-bold">{{ title }}</h1>
{{ message }}
<button
(click)="onActionClick()"
class="hover:underline font-medium cursor-pointer text-red-800 hover:text-red-600 focus:outline-none focus:underline focus:text-red-600"
class="underline font-medium cursor-pointer text-red-800 hover:text-red-600 focus:outline-none focus:underline focus:text-red-600"
role="button"
tabindex="0"
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
<h1 class="font-bold">{{ title }}</h1>
<p class="text-sm">
{{ message }}
@if (showHomeButton){
@if (showHomeButton) {
<button
(click)="onActionClick()"
class="hover:underline font-medium cursor-pointer text-green-800 hover:text-green-600 focus:outline-none focus:underline focus:text-green-600"
class="underline font-medium cursor-pointer text-green-800 hover:text-green-600 focus:outline-none focus:underline focus:text-green-600"
role="button"
tabindex="0"
>
Expand Down
Loading