--feedback
term.setBackgroundColor(1)
term.clear()
image = paintutils.loadImage(".var/feedback.nfp")
paintutils.drawImage(image,1 ,1)

term.setCursorPos(22,7)
term.setBackgroundColor(1)
term.setTextColor(128)
print("Feedback")

term.setCursorPos(9,9)
term.setBackgroundColor(1)
term.setTextColor(128)
print("Feedback: ")
term.setCursorPos(9,8)
write("Name: ")
local input = read()
term.setCursorPos(9,10)
local fback7 = read()
term.setCursorPos(9,11)
local fback6 = read()
term.setCursorPos(9,12)
local fback5 = read()
term.setCursorPos(9,13)
local fback4 = read()
term.setCursorPos(9,14)
local fback3 = read()
term.setCursorPos(9,15)
local fback2 = read()
term.setCursorPos(9,16)
local fback1 = read()
local name = "Name: "..input.."\n"
local message = "Feedback: "..fback7.."\n"..fback6.."\n"..fback5.."\n"..fback4.."\n"..fback3.."\n"..fback2.."\n"..fback1
local feedback = name..message
http.post(
 "http://ndfos.ndfjay.co.uk/feedback/feedback.php?message="..textutils.urlEncode(tostring(feedback))
  )
  term.setBackgroundColor(1)
term.clear()
image = paintutils.loadImage(".var/feedback.nfp")
paintutils.drawImage(image,1 ,1)
term.setCursorPos(20,11)
term.setBackgroundColor(1)
term.setTextColor(128)
print("Thank you!")
term.setCursorPos(10,13)
term.setBackgroundColor(1)
term.setTextColor(128)
print("For Submitting Your Feedback!")
sleep(3)
shell.run(".var/gui")
return