@page "/register" @using System.ComponentModel.DataAnnotations @using Entities.Contracts @inject ISnackbar Snackbar Open Snackbar Create Account @foreach (UserRoles item in Enum.GetValues(typeof(UserRoles))) { if (item != UserRoles.Administrator) { @item.ToString() } } Register Validation Summary @if (success) { Success } else { } Fill out the form correctly to see the success message.