1
0
mirror of https://github.com/bitwarden/server synced 2025-12-25 04:33:26 +00:00

passwordless sign in for admin

This commit is contained in:
Kyle Spearrin
2018-03-21 14:26:49 -04:00
parent 1be7701da0
commit d35d8185ed
16 changed files with 333 additions and 77 deletions

View File

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