updates to register page

This commit is contained in:
timurgordon
2022-10-25 11:30:11 +03:00
parent 92ab31a1c9
commit 16e7e75193
2 changed files with 88 additions and 0 deletions

View File

@@ -53,3 +53,9 @@ pub fn (mut app App) tickets() vweb.Result {
pub fn (mut app App) index() vweb.Result {
return $vweb.html()
}
['/:slug']
pub fn (mut app App) register(slug string) vweb.Result {
println('debugz: $slug')
return $vweb.html()
}