From 16e7e75193bfb1139a544e273eeb14c884d1ce40 Mon Sep 17 00:00:00 2001 From: timurgordon Date: Tue, 25 Oct 2022 11:30:11 +0300 Subject: [PATCH] updates to register page --- templates/register.html | 82 +++++++++++++++++++++++++++++++++++++++++ ticket.v | 6 +++ 2 files changed, 88 insertions(+) create mode 100644 templates/register.html diff --git a/templates/register.html b/templates/register.html new file mode 100644 index 0000000..ee9526c --- /dev/null +++ b/templates/register.html @@ -0,0 +1,82 @@ + + + + + + +
+
+ + + + +
+
+
+ +

+ Register for the + + ICT 2022 Gala +

+

+ Located at Mbweni Ruins, Jungle Paradise Resort - the ICT 2022 Gala dinner will bring together Africa's emerging leaders that shape the regenerative, inclusive and empowering digital future of Africa.

+
+
+ + +
+

+ We care about the protection of your data. Read our + Privacy Policy. +

+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/ticket.v b/ticket.v index bdd2626..ddc9d77 100644 --- a/ticket.v +++ b/ticket.v @@ -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() +}