Hello "Logged-in User"

I would like to have the form recognize the user of the form upon Create (+) New. I currently have them choosing their name via the People Picker, but I would like to eliminate that if possible.

So when the user clicks the (+) to create a new list entry via the form, a field displays Hello "Logged-in User".

Hello @shedev,

You can get current user name with _spPageContextInfo.userDisplayName

To set the field value to "Hello UserName", you can use the following code

fd.field('Title').value = "Hello " + _spPageContextInfo.userDisplayName;