Browse Source

feat(webapp): add instructions for crypto donations

Peter Thomassen 1 year ago
parent
commit
2f290bd30d
1 changed files with 23 additions and 1 deletions
  1. 23 1
      www/webapp/src/views/DonatePage.vue

+ 23 - 1
www/webapp/src/views/DonatePage.vue

@@ -117,6 +117,27 @@
                   </v-layout>
                 </v-expansion-panel-content>
               </v-expansion-panel>
+              <v-expansion-panel>
+                <v-expansion-panel-header class="text-subtitle-1">
+                  <v-layout>
+                    <v-icon class="mr-2">{{ mdiBitcoin }}</v-icon> Crypto Currency (BTC, ETH)
+                  </v-layout>
+                </v-expansion-panel-header>
+                <v-expansion-panel-content class="pt-4">
+                  <p>If you prefer to donate in a crypto currency, you can use the following wallets:</p>
+                  <table>
+                    <tr>
+                      <th>Bitcoin (BTC)</th>
+                      <td><span class="fixed-width">1NMsTB3ML9t7QiEyiyXaU2oi72i2aDhVEK</span></td>
+                    </tr>
+                    <tr>
+                      <th>Etherum (ETH)</th>
+                      <td><span class="fixed-width">0xb9594A8d1BF512eAC59069d9d5cbA457E0d35998</span></td>
+                    </tr>
+                  </table>
+                  <p class="mt-4">Note that we cannot provide you a donation receipt for crypto donations.</p>
+                </v-expansion-panel-content>
+              </v-expansion-panel>
               <v-expansion-panel>
                 <v-expansion-panel-header class="text-subtitle-1">
                   <v-layout>
@@ -188,7 +209,7 @@
 <script>
   import DonateDirectDebitForm from '@/components/DonateDirectDebitForm.vue';
   import QrcodeVue from '../modules/qrcode.vue/dist/qrcode.vue.esm';
-  import {mdiBankTransferIn, mdiBankTransferOut, mdiCreditCardOutline, mdiGiftOutline, mdiGithub, mdiHeartMultipleOutline} from "@mdi/js";
+  import {mdiBankTransferIn, mdiBankTransferOut, mdiBitcoin, mdiCreditCardOutline, mdiGiftOutline, mdiGithub, mdiHeartMultipleOutline} from "@mdi/js";
 
   export default {
     name: 'DonatePage',
@@ -208,6 +229,7 @@
         ),
         mdiBankTransferIn,
         mdiBankTransferOut,
+        mdiBitcoin,
         mdiCreditCardOutline,
         mdiGithub,
         mdiGiftOutline,