Skip to content

Northstrix/Bootleg-Password-Vault

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Bootleg-Password-Vault

A password vault with client-side encryption and nice-looking UI built with React.

Check it out at https://northstrix.github.io/Bootleg-Password-Vault/

The source code of this app is also available at:

The related article can be found at https://medium.com/@Northstrix/adbd8dad0442

image text

image text

image text

image text

image text

image text

image text

image text

image text

image text

image text

Firestore rules

rules_version = '2';
service cloud.firestore {
  match /databases/{database}/documents {
    // Match user-specific documents based on user email
    match /{userEmail}/{recordId} {
      // Allow all authenticated users to create records
      allow create: if request.auth != null;
      // Allow read and delete for the owner
      allow read, delete: if request.auth != null && request.auth.token.email == userEmail;
    }
  }
}

Credit

The existence of this project (at least in its current form) wouldn't've been possible without the following:

Weekly Coding Challenge #1 - Double slider Sign in/up Form - Desktop Only by Florin Pop

Image by ran from Pixabay

Neon Button by Thea

Push Notifications by Florin Pop

すりガラスなプロフィールカード by あしざわ - Webクリエイター

Daily UI#011 | Flash Message (Error/Success) by Julie Park

React Chat App Full Tutorial 2024 | Realtime Chat Application Project with Firebase by Lama Dev

Interactive Loose-Leaf Todo List by Ian

Named scroll-timeline vertical by utilitybend

The prismatic forms by Nour Saud

Pure Css Dark Mode toggle by Álvaro

深海なボタン by あしざわ - Webクリエイター

チェックしないと押せないボタン by あしざわ - Webクリエイター

crypto-js by brix

mipher by mpaland

hash-wasm by Daninet

twofish by wouldgo

firebase-js-sdk by firebase

About

A password vault with client-side encryption and nice-looking UI built with React.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published