This commit is contained in:
Stephen
2019-11-04 21:21:25 -08:00
parent 52d60978fb
commit 367dc246ff
2 changed files with 24 additions and 0 deletions

View 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>

View File

@@ -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")
}
}