A self hosted chat application with end-to-end encrypted messaging.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
254 B

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
  1. package org.ros.chatto.controller;
  2. import org.springframework.stereotype.Controller;
  3. import org.springframework.web.bind.annotation.GetMapping;
  4. @Controller
  5. public class Login {
  6. @GetMapping("/login")
  7. public String loginForm() {
  8. return "login";
  9. }
  10. }