33 lines
541 B
V
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()
|
|
} |