I am trying to solve a set of partial differential equations numerically:
NDSolve[
D[f[x, y], x, x]^2 + D[g[x, y], x, x]^2 + D[f[x, y], x, y]^2 == 0 &&
D[f[x, y], y, y]^2 + D[g[x, y], y, y]^2 + D[f[x, y], x, y]^2 == 0 &&
f[x, 0] == 0 && g[x, 0] == 0 && 1 == (D[f[x, q], q] /. q -> 0) &&
1 == (D[g[x, q], q] /. q -> 0) && 1 == (D[f[x, 0], x]) && 1 == (D[g[x, 0], x])
,{f, g}, {x, 0, 1}, {y, 0, 1}]
Mathematica 12 returns the following error message:

what does this error message mean? How can I fix the input?

xoryand introduce new variables. – Alex Trounev Apr 26 '19 at 00:23