NetTalk Central

Author Topic: Security PIN  (Read 2399 times)

kevin plummer

  • Hero Member
  • *****
  • Posts: 1195
    • View Profile
    • Production Accounting and Software Payroll
Security PIN
« on: October 08, 2015, 05:34:20 AM »
Hi All,

Just wondering the best way to implement security SMS Pins into an app.

At the moment I have created separate page that works sort of like the login page where the user needs to enter the Pin and then the page carry's onto the form if it is ok. I use the _sendpage to intercept when to display the page.

Apart from the login I also have some browsless Table forms (not memory) that require the user to enter a Pin before the page opens.On these pages the data does not save anymore. If I switch of the SMS verification then they work as per normal.

Cheers,

Kevin



Bruce

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 11191
    • View Profile
Re: Security PIN
« Reply #1 on: October 08, 2015, 07:25:36 AM »
Or just add a PIN field to the form, and just add Validation code to the field.
Then if the validation fails, the form will not save.

cheers
Bruce

kevin plummer

  • Hero Member
  • *****
  • Posts: 1195
    • View Profile
    • Production Accounting and Software Payroll
Re: Security PIN
« Reply #2 on: October 08, 2015, 02:02:37 PM »
Thanks Bruce, as the information is sensitive I didn't want to display it until a Pin was entered but I guess I could make it the first field and then just hide\unhide the rest of the information on the screen. I guess I was trying to build one page that I could re-use everywhere like the login page.