Files
4/src/faculty_view.v
2024-07-05 23:57:32 +05:30

33 lines
541 B
V

module main
import vweb
@['/faculty/login'; get]
pub fn (mut app App) faculty_login() vweb.Result {
return $vweb.html()
}
@['/faculty'; get]
pub fn (mut app App) faculty_admin() vweb.Result {
return $vweb.html()
}
@['/faculty/schedule'; get]
pub fn (mut app App) faculty_schedule() vweb.Result {
return $vweb.html()
}
@['/faculty/attendance'; get]
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()
}