I want to connect Input Field with Label in order to present text that is inputed inside of text box.
You could do something like this:
inputTrans = GetComponent<Transform>().Find("Name of Control");
var txtInput = inputTrans.GetComponent<InputField>();
string text = txtInput.text;