[PR #1074] [MERGED] [FEAT] Implement new login screen UI & multi-user password reset #3575

Closed
opened 2026-02-22 18:34:04 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/1074
Author: @shatfield4
Created: 4/9/2024
Status: Merged
Merged: 4/25/2024
Merged by: @timothycarambat

Base: masterHead: 1031-feat-implement-login-screen-redesign


📝 Commits (10+)

  • af79c0a WIP new login screen UI
  • 1e76657 update prisma schema/create new models for pw recovery
  • 50da1e5 WIP password recovery backend
  • 7d5db62 WIP reset password flow
  • c0f6e8f WIP pw reset flow
  • 22dff49 password reset logic complete & functional UI
  • 0e5a714 WIP login screen redesign for single and multi user
  • 6407949 create placeholder modal to display recovery codes
  • 35a457a Merge branch 'master' into 1072-feat-implement-reset-password-recovery-flows
  • 17e44e0 implement UI for recovery code modals/download recovery codes

📊 Changes

14 files changed (+1107 additions, -103 deletions)

View changed files

frontend/src/components/Modals/DisplayRecoveryCodeModal/index.jsx (+86 -0)
📝 frontend/src/components/Modals/Password/MultiUserAuth.jsx (+307 -53)
📝 frontend/src/components/Modals/Password/SingleUserAuth.jsx (+85 -40)
📝 frontend/src/components/Modals/Password/index.jsx (+24 -10)
frontend/src/media/illustrations/login-illustration.svg (+174 -0)
frontend/src/media/illustrations/login-logo.svg (+37 -0)
📝 frontend/src/models/system.js (+37 -0)
📝 frontend/tailwind.config.js (+1 -0)
📝 server/endpoints/system.js (+73 -0)
server/models/passwordRecovery.js (+115 -0)
server/prisma/migrations/20240425004220_init/migration.sql (+30 -0)
📝 server/prisma/schema.prisma (+24 -0)
server/utils/PasswordRecovery/index.js (+98 -0)
📝 server/utils/middleware/multiUserProtected.js (+16 -0)

📄 Description

Pull Request Type

  • feat
  • 🐛 fix
  • ♻️ refactor
  • 💄 style
  • 🔨 chore
  • 📝 docs

Relevant Issues

resolves #1031
resolves #1072

What is in this change?

Describe the changes in this PR that are impactful to the repo.

  • Implement new login screen UI per internal designs
  • Implement multi-user password reset using recovery codes

Additional Information

Add any other context about the Pull Request here that was not captured above.

Developer Validations

  • I ran yarn lint from the root of the repo & committed changes
  • Relevant documentation has been updated
  • I have tested my code functionality
  • Docker build succeeds locally

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/Mintplex-Labs/anything-llm/pull/1074 **Author:** [@shatfield4](https://github.com/shatfield4) **Created:** 4/9/2024 **Status:** ✅ Merged **Merged:** 4/25/2024 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `1031-feat-implement-login-screen-redesign` --- ### 📝 Commits (10+) - [`af79c0a`](https://github.com/Mintplex-Labs/anything-llm/commit/af79c0a353424acbb397042b2eb7ad96667dcf5d) WIP new login screen UI - [`1e76657`](https://github.com/Mintplex-Labs/anything-llm/commit/1e766577d66df0a7e3e97c294e28906166f7077a) update prisma schema/create new models for pw recovery - [`50da1e5`](https://github.com/Mintplex-Labs/anything-llm/commit/50da1e5923e46287ed69c94e048de8a3b06e6132) WIP password recovery backend - [`7d5db62`](https://github.com/Mintplex-Labs/anything-llm/commit/7d5db62bcb684b4050770cdf1b202c1807ea8ba8) WIP reset password flow - [`c0f6e8f`](https://github.com/Mintplex-Labs/anything-llm/commit/c0f6e8ff4d0d5bd0c7473e10b45e440a19c40863) WIP pw reset flow - [`22dff49`](https://github.com/Mintplex-Labs/anything-llm/commit/22dff494a8fbf17d004393354ae917632ba2a47b) password reset logic complete & functional UI - [`0e5a714`](https://github.com/Mintplex-Labs/anything-llm/commit/0e5a714b2501c274558b130c3c31f9f70736d77f) WIP login screen redesign for single and multi user - [`6407949`](https://github.com/Mintplex-Labs/anything-llm/commit/6407949d41f54d74157942fb284498ed8ab5a9be) create placeholder modal to display recovery codes - [`35a457a`](https://github.com/Mintplex-Labs/anything-llm/commit/35a457a0ae355786871ee65b06839c31f99dd126) Merge branch 'master' into 1072-feat-implement-reset-password-recovery-flows - [`17e44e0`](https://github.com/Mintplex-Labs/anything-llm/commit/17e44e0c71fa782086aea9b3d2a7983a77e839b6) implement UI for recovery code modals/download recovery codes ### 📊 Changes **14 files changed** (+1107 additions, -103 deletions) <details> <summary>View changed files</summary> ➕ `frontend/src/components/Modals/DisplayRecoveryCodeModal/index.jsx` (+86 -0) 📝 `frontend/src/components/Modals/Password/MultiUserAuth.jsx` (+307 -53) 📝 `frontend/src/components/Modals/Password/SingleUserAuth.jsx` (+85 -40) 📝 `frontend/src/components/Modals/Password/index.jsx` (+24 -10) ➕ `frontend/src/media/illustrations/login-illustration.svg` (+174 -0) ➕ `frontend/src/media/illustrations/login-logo.svg` (+37 -0) 📝 `frontend/src/models/system.js` (+37 -0) 📝 `frontend/tailwind.config.js` (+1 -0) 📝 `server/endpoints/system.js` (+73 -0) ➕ `server/models/passwordRecovery.js` (+115 -0) ➕ `server/prisma/migrations/20240425004220_init/migration.sql` (+30 -0) 📝 `server/prisma/schema.prisma` (+24 -0) ➕ `server/utils/PasswordRecovery/index.js` (+98 -0) 📝 `server/utils/middleware/multiUserProtected.js` (+16 -0) </details> ### 📄 Description ### Pull Request Type <!-- For change type, change [ ] to [x]. --> - [x] ✨ feat - [ ] 🐛 fix - [ ] ♻️ refactor - [ ] 💄 style - [ ] 🔨 chore - [ ] 📝 docs ### Relevant Issues <!-- Use "resolves #xxx" to auto resolve on merge. Otherwise, please use "connect #xxx" --> resolves #1031 resolves #1072 ### What is in this change? Describe the changes in this PR that are impactful to the repo. - Implement new login screen UI per internal designs - Implement multi-user password reset using recovery codes ### Additional Information Add any other context about the Pull Request here that was not captured above. ### Developer Validations <!-- All of the applicable items should be checked. --> - [x] I ran `yarn lint` from the root of the repo & committed changes - [x] Relevant documentation has been updated - [x] I have tested my code functionality - [x] Docker build succeeds locally --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-22 18:34:04 -05:00
yindo closed this issue 2026-02-22 18:34:04 -05:00
yindo changed title from [PR #1074] [FEAT] Implement new login screen UI & multi-user password reset to [PR #1074] [MERGED] [FEAT] Implement new login screen UI & multi-user password reset 2026-06-05 15:14:07 -04:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Mintplex-Labs/anything-llm#3575