[Developer] #424 style login page and env admin defaults

This commit is contained in:
devmrko
2026-06-25 10:56:58 +09:00
parent 78dae27463
commit cb0b8fce13
5 changed files with 120 additions and 2 deletions

View File

@@ -0,0 +1,13 @@
package com.cloudhandson.vpdbackoffice.web;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
@Controller
public class LoginController {
@GetMapping("/login")
public String login() {
return "login";
}
}