var React = require('react');

var IncompletePrerequisitesInfo = React.createClass({
    displayName: 'IncompletePrerequisitesInfo',
    render: function() {
        return (
            <div>
                <div className="modal_title">Incomplete Prerequisites</div>
                <div className="modal_body">

                    <div className="Typography">
                        <p>To aid in the discovery of staff that may not have attended all courses that are required  the Certification, or have been incorrectly Certified, or the Prerequisites may have altered, an Incomplete prerequisites report has been generated.</p>
                        <p>Select a Stream and/or Region to view staff that may fall into this category.</p>
                        <p>You can then select a staff member&apos;s Career Plan or view their My TIA Profile to aid in the repairing of the data.</p>
                    </div>                      

                    <a className="Button l-right" onClick={this.props.onClose}>Okay</a>
                </div>
            </div>
        );   
    }    
});

module.exports = IncompletePrerequisitesInfo;