Public Backlog

WebinOne announcements, releases, updates and achievements

Request

Members Area Sign Up Settings and Function Improvements

  • Member Area

Issue:

  • Members Area Settings are in too many places: Members Area, Settings → Misc, and Form Settings.
  • Email Verification is not sent if “Enable email verification flow” is not checked in Settings → Misc, even if “Send Confirmation Email Notification” is checked in Form Settings.
  • If “Enable email verification flow” is checked in Settings → Misc, then “Send Confirmation Email Notification” must also be checked in Form Settings, but the system does not require this, causing issues.
  • Cannot control the Members Area independently.

1. Members Area Settings Change

Move global settings to the specific Member Area to allow for flexibility (e.g., one Member Area requires verification, another does not).

  • Remove “Enable email verification flow” and “Remember Me Lifetime” from Settings → Misc → CRM Settings.
  • Add these fields to the Members Area → Details page.

2. Form UI/UX Improvement

Prevent human error by using conditional logic in the Form builder.

Form Settings:

  1. Hide “Send Confirm Email Notification” and “Send Member Area Login Details Email” by default.
  2. These options only become visible if the user selects a specific Members Area in the form configuration.
  3. Based on settings in the Members Area:
    • IF selected Members Area has Enable email verification flow = TRUE
    • THEN “Send Confirm Email Notification” is checked AND disabled (greyed out).
    • You cannot have a verification flow without sending the email.

3. “Soft” Login Verification

The current system uses Hard Verification: The user cannot log in until they verify. The current Soft login does not send the verification email.

Add Soft Login with Verification:

  • The user can register, receive a verification email, and log in immediately without clicking the link.
  • This reduces friction for the user. They aren’t immediately blocked from the content.
  • The system must still send out the email verification if the option is selected in the form settings.

4. Frontend Requirement: Liquid Data & Notifications

To support the “Soft Verification”, we need a boolean exposed in the current member object, for example:

{{ request.currentmember.email_verified }}
  • TRUE: The user is verified.
  • FALSE: The user has not verified.

Add the ability to resend the confirmation email from the front end.

Use Case Example: A conditional notification bar on the website:

{% unless request.currentmember.email_verified %}
<div class="alert alert-warning">
  Please verify your email address.
  <button onclick="triggerResendVerification()">Resend Email</button>
</div>
{% endunless %}