This commit is contained in:
henrydays 2019-04-08 20:18:51 +01:00
parent 52be11e520
commit 75fc88904f
1 changed files with 15 additions and 10 deletions

View File

@ -26,23 +26,28 @@ namespace api.Controllers
[HttpGet("/jogoenei")]
[AllowAnonymous]
public IActionResult jogoENEI(){
public IActionResult jogoENEI()
{
return View("Views/Landing/jogo.cshtml");
}
[HttpGet("/level1ctf")]
[AllowAnonymous]
public IActionResult level1()
{
return View("Views/Landing/1stpage.cshtml");
}
[AllowAnonymous]
[HttpGet("")]
public IActionResult landingPage()
{
return View("Views/Landing/index.cshtml");
}
[AllowAnonymous]
[HttpGet("/reset/{user}")]