DIGIT Docs
  • DIGIT Knowledge Base
  • Local Governance
  • Introducing NalJalSeva
  • 🚰NalJal
    • Approach
    • Demo Video
    • Value Proposition
  • 🌊Product Specifications
    • Features & Functions
    • Workflows
      • Login & Forgot Password
      • View Consumer
      • Update Consumer
      • Water Charges
      • Generate Bulk Demand & Raise Bills
      • Generate Bills For Metered Connections
      • Collect Revenue Offline
      • Add Expense
      • Update Expense
      • Send SMS Notifications
      • Edit User Profile
      • View Household Register
      • View Tabular Dashboard For Expense
      • Download Bills & Receipts
      • View & Download Reports
      • HRMS
        • Login, Reset & Forgot Password
        • Create Employee
        • Update Employee
        • Search Employee
        • Search Department Employee
        • Edit Scheme Rate Master
        • Edit Penalty Master
        • State Dashboard
        • Rollout Dashboard
        • Rate Dashboard
    • User Manual
      • Common Functions
        • Login To App
        • Edit Profile & Change Password
      • Division User
        • View & Edit Consumer
      • Village Water & Sanitation Committee (VWSC) User
        • Generate Bills
        • Search Consumer & Generate Payment
        • Record & Modify Expense Bill
        • View Dashboards
      • State User
  • Reference Implementations
    • Punjab
      • mGramSeva
  • βš’οΈNalJalSeva Platform
    • Architecture
    • Technology
  • πŸ’§Setup NalJalSeva
    • Setup NalJalSeva
      • Install AWS
        • Setup AWS Account
        • Purchase Certificate
        • Setup Git Repository
        • Configure Domain Name
        • Create Git Account In The Client Name
      • Enable Application Permissions
      • Get Started With DIGIT
      • Create Users
      • Load Employees For NalJalSeva
      • Load Consumers For NalJalSeva
      • Configure Module Localisation
      • Update Master Rate
      • Create Consumer API
      • Create User API
      • Configure SMS Template
      • Configure Master Data Management System
      • Create New Tenant
      • Create Workflow
    • Configure NalJalSeva
      • Configure Core Services
      • Configure Backend Services
        • Advance Changes
        • Apportion
        • Billing
        • Dashboard
        • eChallan
        • iFIX Adapter
          • Push Events To iFIX Adapter
        • Penalty Changes
        • Property
        • Reindexing
        • Rollout Dashboard
        • Scheduler
        • User
        • User OTP
        • User Events
        • Vendor Registry
        • Water
        • Water Calculator
      • Configure UI Screens
        • UI Design
        • Select Language
        • Login
        • Change Password
        • Edit Profile
        • Home Page
        • Forgot Password
        • Update Password
        • Generate Bill
        • Search Connection
        • Consumer Screens
          • Create Consumer
          • Update Consumer
        • Expense Screens
          • Add Expense
          • Search Expense Bills
          • Modify Expenses
        • Dashboards Screens
          • Monthly Dashboard
          • Collections Dashboard
          • Expenditure Dashboard
        • Collect Payment
        • Consumer Feedback
        • Household Register
        • UI Mockup Screens
      • Update App
    • Integration Details
      • Integrate Firebase Analytics
      • Integrate Bluetooth Thermal Printer
      • Integration Testing
      • Integration Testing With Github Actions
    • Go Live
Powered by GitBook

All content on this page by eGov Foundation is licensed under a Creative Commons Attribution 4.0 International License.

On this page
  • OTP Request
  • Files Path
  • Field Validation
  • API Details
  • Stack
  • Reset Password
  • User Interaction On Screen
  • Password Hint Card
  • Files Path
  • Field Validations
  • API Details
  • Stack

Was this helpful?

Export as PDF
  1. Setup NalJalSeva
  2. Configure NalJalSeva
  3. Configure UI Screens

Forgot Password

PreviousHome PageNextUpdate Password

Last updated 10 months ago

Was this helpful?

Users are redirected to this screen once they click on the Forgot Password link on the home screen.

OTP Request

This feature allows users to request OTP by entering a valid (registered) mobile number.

Follow the steps below to set a new password -

  • Click on the Forgot Password link visible on the login screen

  • Enter the registered mobile number

The remaining steps are explained in the section.

Files Path

Primary Files:

Field Validation

Fields

Validation

Phone Number*

r'^[0-9]+$'

API Details

End Point
Request Method
Request Info

user-otp/v1/_send

POST

"otp": { "mobileNumber": {}, "tenantId": {}, "type": "passwordreset", "userType": "Employee" }

Stack

2 β†’ Language Selection Screen. + Login Screen + ForgotPassword

Pop β†’ Login Screen Screen

Widgets utilised from the Library

Widgets
File Path
Description

BuildTextField

Text Field

Button

Button

Reset Password

Users are redirected to this screen once they click on the Continue button on the Forgot Password screen.

Link - β†’ {base url}/mgramseva/selectLanguage/login/forgotPassword/resetPassword

User Interaction On Screen

  • Enter the OTP sent on the user’s 10-digit mobile number.

  • Set the new password for logging into the application.

  • Click on Change Password to apply new password credentials for the user.

Password Hint Card

This feature helps to provide the users with a clear indication of what the password should contain. Acceptable passwords must contain -

  • Minimum 6 digits

  • At least one special character ( !#$%^&...)

  • At least one letter

  • At least one number

Files Path

Primary Files:

Field Validations

Fields
Validations

Enter the OTP sent *

r'^[0-9]+$' , 6 digit

Enter a New Password*

r'^(?=.*?[A-Za-z])(?=.*?[0-9])(?=.*?[#?!@$%^&*-]).{6,}$'

Confirm New Password

Match with New Password

API Details

End Point
Request Method
Request Info

user/password/nologin/_update

POST

"otpReference": {}, "userName": {}, "newPassword": {}, "tenantId": {}, "type": β€œEmployee”

Stack

1 β†’ Language Selection Screen. + Login Screen + Forgot Password + Reset Password.

Pop β†’ Forgot Password Screen.

Widgets utilised from the Library

Widgets
File Path
Description

BuildTextField

Text Field

BottomButtonBar

Button

PasswordHint

Password Hint Card

​​

​​

πŸ’§
https://github.com/egovernments/punjab-mgramseva/blob/develop/frontend/mgramseva/lib/widgets/TextFieldBuilder.dart
https://github.com/egovernments/punjab-mgramseva/blob/develop/frontend/mgramseva/lib/widgets/BottonButtonBar.dart
https://github.com/egovernments/punjab-mgramseva/blob/develop/frontend/mgramseva/lib/widgets/PasswordHint.dart
Reset Password
punjab-mgramseva/ForgotPassword.dart at develop Β· egovernments/punjab-mgramseva
punjab-mgramseva/Resetpassword.dart at develop Β· egovernments/punjab-mgramseva
​punjab-mgramseva/TextFieldBuilder.dart at develop Β· egovernments/punjab-mgramseva
​punjab-mgramseva/Button.dart at develop Β· egovernments/punjab-mgramseva