Input Field

I want to connect Input Field with Label in order to present text that is inputed inside of text box. 71856-screen-shot-2016-06-10-at-103721-am.png

You could do something like this:

inputTrans = GetComponent<Transform>().Find("Name of Control");
var txtInput = inputTrans.GetComponent<InputField>();
string text = txtInput.text;