https://github.com/creative-tutorials/payment-wallet-app
In this app I have made the basic concepts behind making a transaction to another User using JavaScript LocalStorage and Data collection...
https://github.com/creative-tutorials/payment-wallet-app
api app css html javascript localstorage mobile-app nodejs react web webapp
Last synced: about 1 year ago
JSON representation
In this app I have made the basic concepts behind making a transaction to another User using JavaScript LocalStorage and Data collection...
- Host: GitHub
- URL: https://github.com/creative-tutorials/payment-wallet-app
- Owner: creative-tutorials
- Created: 2022-03-22T09:04:49.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2023-02-26T21:48:40.000Z (about 3 years ago)
- Last Synced: 2025-01-22T22:30:42.893Z (about 1 year ago)
- Topics: api, app, css, html, javascript, localstorage, mobile-app, nodejs, react, web, webapp
- Language: JavaScript
- Homepage:
- Size: 16.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Payment-Wallet-App
This is a mini project of all transaction app
In this repo I'll list the concept behind creating this app
#1 Login Authentication
Like any other transaction app you will have to sign in before using their app, I used the submit event in JavaScript to submit the form once user has filled it correctly before that happend it JavaScript I first created my form in HTML
#2 Retrieving and Storing Data
Here I stored every data going on In this app let me explain, first I stored username into the database using LocalStorage, this way a welcome message will be displayed
with the users name,
Second I stored every transaction data that was made, if user makes a transaction It gets stored Into JavaScript LocalStorage.
The Actual Transaction
Yes I sent a transaction but is it real, well no and yes no because you don't get the actual money, yes because the user will see that a transaction has being processed
into his account and you the transaction send has seen that I've send this transaction sucessfully.
All these were made using LocalStorage and some data collection
# Thanks for reading this far 😉