diff --git a/src/templates/watermark.html b/src/templates/watermark.html
deleted file mode 100644
index 3278798ed45d0bdcf1c790bbe5fb3383316bfb05..0000000000000000000000000000000000000000
--- a/src/templates/watermark.html
+++ /dev/null
@@ -1,24 +0,0 @@
-{% if DEPLOYMENT_ENV != "PROD" and DEPLOYMENT_ENV != "MOCK" %}
-<div class="watermark">{{DEPLOYMENT_ENV}}</div>
-
-<!-- must be inline as it uses django template tags -->
-<style>
-   .watermark {
-	position: fixed;
-	transform: translate(-50%, -50%);
-	opacity: 0.3;
-	{% if DEPLOYMENT_ENV == "STAGE" %}
-	color: RED; 
-	{% else %}
-	color: GREEN; 
-	{% endif %}
-	font-size: 15em;
-	top: 50%;
-	left: 50%;
-	pointer-events: none;
-	box-sizing: unset;
-  }
-
-</style>
-
-{%endif %}