diff --git a/src/pages/ContactUs.vue b/src/pages/ContactUs.vue
index 6b1fa15caa73c740d0a2aa195ec1bda7f5caf3c4..c8097349455037a7200e525d3258fcd8613c07fd 100644
--- a/src/pages/ContactUs.vue
+++ b/src/pages/ContactUs.vue
@@ -1,3 +1,25 @@
-<template lang='pug'>
-p test
-</template>
\ No newline at end of file
+<template lang="pug">
+h4(class="title") <mark>Privacy Policy:</mark>
+div(class="text")
+  p If you have any problems our queries with our app then feel free to contact us using the form below!
+  form(class="form")
+    label(for="words") Please describe your problem/query here <br>
+    input(type="text", id="words", name="words") <br>
+    p Do you wish to remain anonymous? (this will prevent us from being able to respond) <br>
+    input(type="radio", id="yes", name="anon", value="Y")
+    label(for="yes") Yes <br>
+    input(type="radio", id="no", name="anon", value="N")
+    label(for="no") No <br>
+    input(type="submit" value="Submit")
+<br>
+</template>
+
+<style>
+.title {
+  text-align:center; 
+}
+.text {
+  border: 3px solid black; 
+  padding: 25px;
+}
+</style>
\ No newline at end of file