1
0
mirror of https://github.com/bitwarden/server synced 2026-01-03 09:03:44 +00:00

passwordless signin for billing portal

This commit is contained in:
Kyle Spearrin
2018-03-20 15:00:56 -04:00
parent 9ed1ae9567
commit 3d9d193bda
16 changed files with 486 additions and 7 deletions

View File

@@ -0,0 +1,11 @@
using System.ComponentModel.DataAnnotations;
namespace Bit.Billing.Models
{
public class LoginModel
{
[Required]
[EmailAddress]
public string Email { get; set; }
}
}