Skip to content

improvement: Add separate login / signup screens #331

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 4, 2025

Conversation

brendan-kellam
Copy link
Contributor

@brendan-kellam brendan-kellam commented Jun 4, 2025

This PR adds a separate signup screen and a small "No account yet?" and "Already have an account?" dialogs.

Login:
image

Signup:
image

Summary by CodeRabbit

  • New Features

    • Introduced a dedicated signup page allowing users to create new accounts.
    • Enhanced login and signup forms to display context-specific headings and navigation prompts with links between login and signup.
  • Bug Fixes

    • Improved navigation flow by ensuring users are redirected appropriately when accessing signup or login pages.
    • Updated routing logic to allow direct access to the signup page without redirection.
  • Style

    • Adjusted spacing below the logo for improved visual layout.

@brendan-kellam brendan-kellam requested a review from msukkari June 4, 2025 06:21
Copy link

coderabbitai bot commented Jun 4, 2025

Walkthrough

A signup page was introduced, along with updates to the login form component to support both login and signup contexts. The login and signup pages now pass a context prop to the form, which conditionally changes headings and navigation prompts. Middleware was updated to allow requests to the signup path to bypass tenant domain redirection.

Changes

File(s) Change Summary
.../login/components/loginForm.tsx Added context prop to LoginFormProps and LoginForm; updated UI to support login/signup.
.../login/page.tsx Passed context="login" to LoginForm component.
.../signup/page.tsx Added new signup page; renders LoginForm with context="signup" and handles session logic.
.../middleware.ts Allowed /signup path to bypass tenant domain redirection.
CHANGELOG.md Added changelog entry for new signup page and related updates referencing PR #311.

Sequence Diagram(s)

sequenceDiagram
    participant User
    participant SignupPage
    participant AuthUtil
    participant LoginForm

    User->>SignupPage: Visit /signup
    SignupPage->>AuthUtil: Check session
    alt Session exists
        SignupPage->>User: Redirect to home
    else No session
        SignupPage->>AuthUtil: Get providers
        SignupPage->>LoginForm: Render with context="signup"
        LoginForm->>User: Show signup form and navigation prompt
    end
Loading

Poem

A bunny hops to pages new,
Signup joins the login crew!
Context guides which words appear,
"Sign in" or "Create"—all clear.
Middleware lets signup through the gate,
Rabbits rejoice—registration’s great!
🐇✨


Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Explain this complex logic.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai explain this code block.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and explain its main purpose.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Support

Need help? Create a ticket on our support page for assistance with any issues or questions.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai generate sequence diagram to generate a sequence diagram of the changes in this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Nitpick comments (4)
packages/web/src/app/signup/page.tsx (3)

10-15: Rename interface to reflect its actual usage.

The LoginProps interface name is misleading since this component handles signup. Consider renaming it to AuthProps or AuthPageProps to better reflect its dual usage.

-interface LoginProps {
+interface AuthProps {
     searchParams: {
         callbackUrl?: string;
         error?: string;
     }
 }

17-22: Add missing page load logging for consistency.

The login page logs when it loads, but this signup page doesn't. Consider adding a similar log entry for consistency and debugging purposes.

 export default async function Signup({ searchParams }: LoginProps) {
+    logger.info("Signup page loaded");
     const session = await auth();

1-48: Consider refactoring to reduce code duplication.

This signup page is nearly identical to the login page, with only the context prop being different. This creates maintenance overhead and potential for inconsistencies.

Consider creating a shared component or utility function that both pages can use, or explore if these could be combined into a single page with dynamic routing.

packages/web/src/app/login/components/loginForm.tsx (1)

159-171: Consider updating provider button text for signup context.

The provider buttons always display "Sign in with {name}" regardless of context. In the signup context, this might be confusing to users who expect "Sign up with {name}" or "Continue with {name}".

However, if the authentication flow handles both login and signup seamlessly (as suggested by the credentials provider in auth.ts), this might be an intentional UX decision.

Consider updating the button text based on context:

-            Sign in with {name}
+            {context === "login" ? "Sign in with" : "Continue with"} {name}
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 258b9cf and 34b796f.

📒 Files selected for processing (4)
  • packages/web/src/app/login/components/loginForm.tsx (3 hunks)
  • packages/web/src/app/login/page.tsx (1 hunks)
  • packages/web/src/app/signup/page.tsx (1 hunks)
  • packages/web/src/middleware.ts (1 hunks)
🧰 Additional context used
🧬 Code Graph Analysis (1)
packages/web/src/app/signup/page.tsx (4)
packages/logger/src/index.ts (1)
  • createLogger (86-86)
packages/web/src/auth.ts (2)
  • session (151-160)
  • getProviders (36-129)
packages/web/src/app/login/components/loginForm.tsx (1)
  • LoginForm (28-143)
packages/web/src/app/components/footer.tsx (1)
  • Footer (4-18)
⏰ Context from checks skipped due to timeout of 90000ms (1)
  • GitHub Check: build
🔇 Additional comments (6)
packages/web/src/app/login/page.tsx (1)

43-43: LGTM!

Clean implementation that correctly passes the login context to the shared form component.

packages/web/src/middleware.ts (1)

13-17: LGTM!

Correctly adds the signup path to bypass tenant domain redirection, which is necessary for the new signup functionality to work properly.

packages/web/src/app/login/components/loginForm.tsx (4)

25-26: LGTM!

Clean interface extension that properly types the new context prop.


28-28: LGTM!

Correctly updates the function signature to accept the new context prop.


81-85: LGTM!

Clean conditional rendering that provides appropriate headings for both login and signup contexts. The spacing adjustment with mb-3 also improves the visual layout.


126-136: LGTM!

Well-implemented conditional navigation prompts that help users switch between login and signup flows. The links are properly styled and accessible.

msukkari
msukkari previously approved these changes Jun 4, 2025
Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Nitpick comments (1)
CHANGELOG.md (1)

10-11: Correct spelling and PR reference in the changelog entry.

The word “seperate” should be “separate”, and the PR number should be 331, not 311.

Apply this diff:

@@ -10,2 +10,2 @@
- - Added seperate page for signup. [#311]
+ - Added separate signup page. [#331]
🧰 Tools
🪛 LanguageTool

[duplication] ~10-~10: Possible typo: you repeated a word.
Context: ...pec/v2.0.0.html). ## [Unreleased] ### Added - Added seperate page for signup. [#311](https:...

(ENGLISH_WORD_REPEAT_RULE)

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 34b796f and 9be3baa.

📒 Files selected for processing (1)
  • CHANGELOG.md (1 hunks)
🧰 Additional context used
🪛 LanguageTool
CHANGELOG.md

[duplication] ~10-~10: Possible typo: you repeated a word.
Context: ...pec/v2.0.0.html). ## [Unreleased] ### Added - Added seperate page for signup. [#311](https:...

(ENGLISH_WORD_REPEAT_RULE)

⏰ Context from checks skipped due to timeout of 90000ms (1)
  • GitHub Check: build

@brendan-kellam brendan-kellam merged commit ee88353 into main Jun 4, 2025
5 checks passed
@brendan-kellam brendan-kellam deleted the bkellam/login_nits branch June 4, 2025 23:42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants