Tychobra / polished

Authentication and Administration for Shiny apps
https://polished.tech
Other
234 stars 36 forks source link

Add email validation to sign in + registration email inputs #117

Closed merlinoa closed 4 years ago

merlinoa commented 4 years ago
# From https://www.nicebread.de/validating-email-adresses-in-r/
is_valid_email <- function(x) {
  grepl("^\\s*[A-Z0-9._%+-]+@[A-Z0-9.-]+\\.[A-Z]{2,}\\s*$", as.character(x), ignore.case=TRUE)
}
phoward38 commented 4 years ago

Completed w/ 7afb606098b72cbcf87d47ee9610d1c965061129

phoward38 commented 4 years ago

Fixed autofill w/ 50608a2afe388d92f65211e3525acad37c7f1d14

NOTE: Also fixed sign_in_module_2 logic for Sign In