Skip to content

Commit

Permalink
added login and registration page
Browse files Browse the repository at this point in the history
  • Loading branch information
thaka committed Dec 30, 2024
1 parent 2986f75 commit 992c7d6
Show file tree
Hide file tree
Showing 16 changed files with 39,410 additions and 62 deletions.
13,006 changes: 13,006 additions & 0 deletions node_modules/bootstrap/css/style.css

Large diffs are not rendered by default.

13,006 changes: 13,006 additions & 0 deletions node_modules/bootstrap/scss/css/main.css

Large diffs are not rendered by default.

19 changes: 14 additions & 5 deletions src/main/java/com/aaomile/controllers/PageController.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,30 @@ public String index(Model model) {
return "home";
}
@RequestMapping("/signup")
public String about(Model model) {
public String sigup(Model model) {
return "signup";
}
@RequestMapping("/about")
public String login(Model model) {
public String about(Model model) {
return "about";
}
@RequestMapping("/navbar")
public String contact(Model model) {
return "navbar";
}

@RequestMapping("/create_event")
public String create_event(Model model) {
return "create_event";
@RequestMapping("/login")
public String login(Model model) {
return "login";
}

@RequestMapping("/Shows")
public String Shows(Model model) {
return "Shows";
}
@RequestMapping("/Events")
public String Events(Model model) {
return "Events";
}
//route

Expand Down
Loading

0 comments on commit 992c7d6

Please sign in to comment.