https://github.com/lakshmankishore/simpleauthapp
This is a simple authentication web app built using flask as backend API and JWT for access token.
https://github.com/lakshmankishore/simpleauthapp
flask flask-cors flask-jwt-extended html-css-javascript jwt jwt-authentication
Last synced: 10 months ago
JSON representation
This is a simple authentication web app built using flask as backend API and JWT for access token.
- Host: GitHub
- URL: https://github.com/lakshmankishore/simpleauthapp
- Owner: LakshmanKishore
- Created: 2022-05-22T15:30:09.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-05-22T15:31:25.000Z (over 3 years ago)
- Last Synced: 2025-02-02T02:11:12.554Z (about 1 year ago)
- Topics: flask, flask-cors, flask-jwt-extended, html-css-javascript, jwt, jwt-authentication
- Language: JavaScript
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple Authentication Web App
A simple authentication web app built to
know about JWT access tokens.
## Tech Stack
**Client:** HTML, CSS, Javascript
**Server:** Flask
## Run Locally
Clone the project
```bash
git clone https://github.com/LakshmanKishore/imageCompression.git
```
Go to the project directory
```bash
cd my-project
```
Install dependencies
```bash
pip install -r requirements.txt
```
Go to backend directory
```bash
cd backend
```
Start the server
```bash
python app.py
```
## Lessons Learned
I was able to learn more about usage of JWT access token.
I was able to build a simple authentication application.
I learnt about creating API using Flask.