add basic web site for signup

This commit is contained in:
2022-09-14 19:56:57 -04:00
parent 05c1ca107e
commit 201eb8053a
76 changed files with 74333 additions and 3 deletions

View File

@ -0,0 +1,9 @@
namespace BinaryDad.AacpsBusAlert.WebSignUp.Models
{
public class ErrorViewModel
{
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}