privacy
This commit is contained in:
21
Resources/Views/privacy.leaf
Normal file
21
Resources/Views/privacy.leaf
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Privacy Anyone?</title>
|
||||||
|
<style>
|
||||||
|
body {
|
||||||
|
width: 35em;
|
||||||
|
margin: 0 auto;
|
||||||
|
font-family: Tahoma, Verdana, Arial, sans-serif;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h1>We don't have a privacy policy yet, you just gotta trust that I'm not collecting and selling all your data.</h1>
|
||||||
|
|
||||||
|
<p>To contact White Hat click
|
||||||
|
<a href="https://www.thewhitehat.club/resources">here</a>.<br/>
|
||||||
|
|
||||||
|
<p><em>Thank you for participating in the White Hat app beta.</em></p>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -8,4 +8,7 @@ public func routes(_ router: Router) throws {
|
|||||||
router.get("/index.html") { request in
|
router.get("/index.html") { request in
|
||||||
return try request.view().render("home")
|
return try request.view().render("home")
|
||||||
}
|
}
|
||||||
|
router.get("/privacy") { request in
|
||||||
|
return try request.view().render("privacy")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user