This commit is contained in:
Aritra Banik 2024-06-04 12:40:35 +05:30
parent 1a1ae16f91
commit a53eb362c2
2 changed files with 12 additions and 1 deletions

View file

@ -1,3 +1,8 @@
module main
import vweb
// @['/controller/faculty'; post]
// pub fn (mut app App) controller_get_faculty(username string, password string) vweb.Result {
// return $vweb.html()
// }

View file

@ -25,3 +25,9 @@ pub fn (mut app App) faculty_attendance() vweb.Result {
return $vweb.html()
}
@['/faculty/signup'; get]
pub fn (mut app App) faculty_signup() vweb.Result {
return $vweb.html()
}