diff --git a/Resources/Views/privacy.leaf b/Resources/Views/privacy.leaf new file mode 100644 index 0000000..5e797a4 --- /dev/null +++ b/Resources/Views/privacy.leaf @@ -0,0 +1,21 @@ + + +
+To contact White Hat click
+here.
+
+
Thank you for participating in the White Hat app beta.
+ + diff --git a/Sources/App/routes.swift b/Sources/App/routes.swift index d193b8e..d84e0c3 100644 --- a/Sources/App/routes.swift +++ b/Sources/App/routes.swift @@ -8,4 +8,7 @@ public func routes(_ router: Router) throws { router.get("/index.html") { request in return try request.view().render("home") } + router.get("/privacy") { request in + return try request.view().render("privacy") + } }