function Fond()
image = net.loadIMG("1020","GPnet/fond",3)
fond = paintutils.loadImage(image)
paintutils.drawImage(fond,1,4)
end

Fond()
term.setBackgroundColor(colors.white)
term.setTextColor(colors.black)
texte = "Veuillez cliquer sur ce texte."
longueur = string.len(texte)
X = 51/2 - longueur/2
term.setCursorPos(X,10)
print(texte)

boucle = true
while boucle do
local event, button, Xclic, Y = os.pullEventRaw()
if event == "mouse_click" then
  if button == 1 then
    if Xclic >= X and Xclic <= 51/2+longueur/2 and Y == 10 then
      boucle = false
    end
  end
end
end

return "askPage->1020->srv/pagenext->3"
