diff --git a/endpoints/web.py b/endpoints/web.py
index 625c6d58d..3c6c5e07b 100644
--- a/endpoints/web.py
+++ b/endpoints/web.py
@@ -115,6 +115,11 @@ def tos():
return render_template('tos.html')
+@app.route('/disclaimer', methods=['GET'])
+def disclaimer():
+ return render_template('disclaimer.html')
+
+
@app.route('/privacy', methods=['GET'])
def privacy():
return render_template('privacy.html')
diff --git a/static/css/quay.css b/static/css/quay.css
index 306322197..15ae81f66 100644
--- a/static/css/quay.css
+++ b/static/css/quay.css
@@ -522,6 +522,15 @@ html, body {
padding: 20px;
}
+.jumbotron .disclaimer-link {
+ font-size: .5em;
+ vertical-align: top;
+}
+
+.jumbotron .disclaimer-link:hover {
+ text-decoration: none;
+}
+
.landing .popover {
font-size: 14px;
}
diff --git a/static/partials/landing.html b/static/partials/landing.html
index fbde7f520..e5165fc88 100644
--- a/static/partials/landing.html
+++ b/static/partials/landing.html
@@ -3,9 +3,9 @@
-
Secure hosting for private docker repositories
-
Use the docker images your team needs with the safety of private repositories
-
+
Secure hosting for private Docker* repositories
+
Use the Docker images your team needs with the safety of private repositories
+
@@ -72,9 +72,9 @@
Secure
- Store your private docker containers where only you and your team
+ Store your private Docker containers where only you and your team
can access it, with communication secured by SSL at all times
-
+
diff --git a/templates/disclaimer.html b/templates/disclaimer.html
new file mode 100644
index 000000000..3945b43a6
--- /dev/null
+++ b/templates/disclaimer.html
@@ -0,0 +1,16 @@
+{% extends "base.html" %}
+
+{% block title %}
+
Docker Trademark Disclaimer ยท Quay.io
+{% endblock %}
+
+{% block body_content %}
+
+
+
+ Quay.io is in no way (and we mean in no way) affiliated with or sponsored by Docker, Inc. Docker, Docker logo and dotCloud are trademarks or registered trademarks of Docker, Inc. in the United States and/or other countries. Docker, Inc. and other parties may also have trademark rights in other terms used herein.
+
+
+
+
+{% endblock %}
\ No newline at end of file