As a user, I must write 250 words daily before I can unlock and use my computer/phone, to ensure I maintain my writing habit.
Acceptance Criteria
[ ] System locks out access to other apps before writing is completed.
[ ] User is prompted to write 250 words upon attempting to use the device.
[ ] User's input is validated to check if word count is 250 or more.
[ ] After completing 250 words, the system unlocks other apps.
[ ] User can save progress and continue writing later to reach the 250-word goal.
[ ] If a day is missed, the user is locked out for 24 hours before retrying.
[ ] The system provides a simple text editor for writing.
[ ] User receives a visual confirmation upon completion of the writing goal.
sequenceDiagram
participant User
participant DailyLockoutMechanism as DLM
User->>DLM: Attempt to access device
DLM->>User: Prompt to write 250 words
User->>DLM: Submit written text
DLM->>DLM: Validate word count
DLM-->>User: Unlock device upon success
DailyLockoutMechanism
As a user, I must write 250 words daily before I can unlock and use my computer/phone, to ensure I maintain my writing habit.
Acceptance Criteria