Content pulled from page template instead of editor

You are in luck. WordPress core includes a function to retrieve the CMS editor content and place it where you’d like it in your template. In fact, it is already in place in your template, just commented out:

the_content() is what you are looking for, but it doesn’t belong where it sits in the code you posted.

<?php // the_content(); ?> <– delete this commented out PHP.

Keeping the template you have assigned to that page, simply replace your:
<p>**I WANT THIS INFO TO BE IN THE WYSIWYG EDITOR**</p> placeholder with the WP function:

<?php the_content(); ?>

Whatever is added to the CMS editor for that page will be inserted into the template at that location.