Accessed none trying to read property

The error tells you, that the Reference you are trying to use is “null”. References don’t always have values. It’s like a finger pointing to the thing you want to use,
but it can also point to,… nothing. If that’s the case, you are not allowed to access it and the error “Accessed None” returns.

The Error happens in “OnClicked (Login)”. The “GetField” seems to not return anything and calling “As String” on it, is resulting in “Accessed None”.

Before you use your References (Called “Pointers” in C++), make sure to use “IsValid” node on them. Doesn’t matter which one of the both, one just needs
the Branch as an additional node, cause it only returns true or false.

So the field name “result” seems to be wrong?