<!DOCTYPE html>
<html lang="en">
<!--<![endif]-->
<!-- BEGIN HEAD -->
<head>
    <meta charset="utf-8"/>
    <title>Employee Comment</title>

    <?php echo Html::style('dt_plugin/bootstrap3.3.5.min.css'); ?>

    <style>
        table tr th{
            text-align: right;
            padding: 5px;
            border-spacing: 5px;
            width: 200px;
        }
        table tr td{
            text-align: left;
            padding: 5px;
            border-spacing: 5px;
        }

    </style>
</head>
<body>

<div class="container-fluid text-center">
    <div class="row content">
        <div class="col-lg-10">
            <table class="table table-bordered table-stripped" style="width: 100% !important;">
                <tr>
                    <th width="200" cellpadding="3" cellspacing="3" style="text-align: right">Name</th>
                    <td><?php echo $name; ?></td>
                </tr>

                <tr>
                    <th width="200" cellpadding="3" cellspacing="3">Email</th>
                    <td><?php echo $email; ?></td>
                </tr>

                <tr>
                    <th width="200" cellpadding="3" cellspacing="3">Company</th>
                    <td><?php echo $company; ?></td>
                </tr>

                <tr>
                    <th width="200" cellpadding="3" cellspacing="3">Is Company Employee?</th>
                    <td><?php echo (($is_company_employee == false)?"Yes":"No"); ?></td>
                </tr>

                <tr>
                    <th width="200" cellpadding="3" cellspacing="3">Blog Title</th>
                    <td><?php echo $blog_title; ?></td>
                </tr>

                <tr>
                    <th width="200" cellpadding="3" cellspacing="3">Blog Link</th>
                    <td><?php echo $blog_link; ?></td>
                </tr>

                <tr>
                    <th width="200" cellpadding="3" cellspacing="3">Comment</th>
                    <td><?php echo $comment; ?></td>
                </tr>

            </table>
        </div>
    </div>
</div>

<?php echo Html::script('dt_plugin/bootstrap_3.3.6.min.js'); ?>

</body>
</html>

