This commit is contained in:
2024-07-05 23:57:32 +05:30
commit 8dbbe65a09
29 changed files with 554 additions and 0 deletions

33
src/faculty_view.v Normal file
View File

@@ -0,0 +1,33 @@
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()
}