mirror of
https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
synced 2025-10-30 17:55:32 +00:00
FInalized Menu. Added first static Page...
This commit is contained in:
29
HaWeb/Controllers/RegisterController.cs
Normal file
29
HaWeb/Controllers/RegisterController.cs
Normal file
@@ -0,0 +1,29 @@
|
||||
using System.Diagnostics;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using HaWeb.Models;
|
||||
|
||||
namespace HaWeb.Controllers;
|
||||
|
||||
[Route("Register/[action]/{id?}")]
|
||||
public class RegisterController : Controller
|
||||
{
|
||||
[ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
|
||||
public IActionResult Error()
|
||||
{
|
||||
return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier });
|
||||
}
|
||||
public IActionResult Register(string? id)
|
||||
{
|
||||
return View("Index");
|
||||
}
|
||||
|
||||
public IActionResult Bibelstellen(string? id)
|
||||
{
|
||||
return View("Index");
|
||||
}
|
||||
|
||||
public IActionResult Forschung(string? id)
|
||||
{
|
||||
return View("Index");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user