Files
upo-senior-assistant/SeniorAssistant/Views/Home/Register.cshtml.cs
Giacomo Bertolazzi 746e5fe14b Fixes
- Added forgot option
- added modify user
- moved login and register
2019-01-29 19:59:12 +01:00

16 lines
318 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace SeniorAssistant.Views.Shared
{
public class RegisterModel : PageModel
{
public void OnGet()
{
}
}
}