Added Form Authenticator

Includes the methods needed to verify the user inputs and to validate that they are correct.
This commit is contained in:
lukejelse04 2021-10-03 22:35:59 +01:00
parent 5d8346aa5d
commit b30ff5ad14

View File

@ -0,0 +1,24 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace EFB.Controllers.FormAuthenticator
{
public static class FormAuthenticator
{
public static bool ValidateEMail(string EMail){
if (EMail.Contains("@") && EMail.Contains(".") && !EMail.Contains(" "))
{
if (EMail.Count(x => x == '@') == 1)
{
return true;
}
}
return false;
}
}
}