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,32 @@
using BinaryDad.AacpsBusAlert.WebSignUp.Models;
using Microsoft.AspNetCore.Mvc;
using System.Diagnostics;
namespace BinaryDad.AacpsBusAlert.WebSignUp.Controllers
{
public class HomeController : Controller
{
private readonly ILogger<HomeController> _logger;
public HomeController(ILogger<HomeController> logger)
{
_logger = logger;
}
public IActionResult Index()
{
return View();
}
public IActionResult Privacy()
{
return View();
}
[ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
public IActionResult Error()
{
return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier });
}
}
}