You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The user can enter or paste one or more data lines in a text box. The lines will be composed of health card number, province code, and date of birth, comma or tab separated. Label: Health card number,Province code,Date of birth Hint: Please enter the health card number, province code, and date of birth as YYYY-MM-DD, separated by ',' for one or more patients, one patient per line. Example:"2345678904,ON,2002-01-23" Placeholder: 2345678904,ON,2002-01-23
123456789,AB,2003-05-31
An optional "Project Id" can be entered separately in a text input. The input will be populated with the value passed in the project_id url parameter, if such a parameter is available.
Upon clicking a button labeled "Generate GUIDs", each line in the textarea is passed to a cryptographic hash function (bcrypt for generating GUIDs #4), together with the project id (if available). Each produces a GUID. All processing is done clientside in javascript and no data is ever sent to a remote server.
Once generated, GUIDs are listed under the button such that they can be easily copied and pasted in a different application.
The text was updated successfully, but these errors were encountered:
…able information
* added multiline placeholder
* fixed the position of the input adornment
* used theme colors instead of hardcoded colors
* improved overall spacing
* used Typography component for "copied" message for consistent font face
Label:
Health card number,Province code,Date of birth
Hint:
Please enter the health card number, province code, and date of birth as YYYY-MM-DD, separated by ',' for one or more patients, one patient per line. Example:"2345678904,ON,2002-01-23"
Placeholder:
2345678904,ON,2002-01-23
123456789,AB,2003-05-31
project_id
url parameter, if such a parameter is available.The text was updated successfully, but these errors were encountered: