Current File : //etc/sentora/panel/modules/emailspamcheck/module.zpm
<@ Init @>
<div class="zmodule_content panel" id="zmodule_header_<@ ModuleName @>">
    <div class="panel-heading">
       <!-- <img src="<@ ModuleIcon @>" width="35" height="35" border="0" alt="<@ ModuleName @>"> -->
	<img src="/modules/emailspamcheck/assets/icon.jpg" width="35" height="35" border="0" alt="<@ ModuleName @>">
        <div class="zmodule_title">
            <@ ModuleName @>
        </div>

        <div class="zmodule_desc" id="zmodule_desc_<@ ModuleName @>"><@ ModuleDesc @></div>

    </div>

<style>
.helpicon {
display: block;
float: right;
border: 1px solid #ccc;
background-color: #f3f3f3;
padding: 5px 10px;
font-size: 12px;
margin-top:-139px;
margin-right:5px;
-webkit-box-shadow: -8px 7px 5px 0px rgba(204,204,204,1);
-moz-box-shadow: -8px 7px 5px 0px rgba(204,204,204,1);
box-shadow: -8px 7px 5px 0px rgba(204,204,204,1);
-webkit-box-shadow: 8px 7px 5px 0px rgba(204,204,204,1);
-moz-box-shadow: 8px 7px 5px 0px rgba(204,204,204,1);
box-shadow: 8px 7px 5px 0px rgba(204,204,204,1);
}

</style>
<div class="helpicon">
<a href="<@ helpicon @>" target="_blank"><img src="etc/styles/CstyleX-master/images/help.png" style="float:left;" ><span style="float:left;margin-top:8px;font-weight:bold;font-size:12px;" >Video Tutorial</span></a>
</div>

    <div class="zform_wrapper">
<form action="./?module=emailspamcheck&action=checkSpamMail" method="post" name="frmViewLogs" id="frmViewLogs">
            <table class="zform" width="100%" cellborder="0" cellspacing="0">
               <tr>
                   <th nowrap="nowrap"><: Domain :>:</th>
                   <td>
                     <select name="domain_id" id="domain_id">
                        <% loop Domains %>
                        <option value="<& name &>"<& selected &>><& name &></option>
                        <% endloop %>
                     </select>
                   </td>
               </tr>
               <!--tr>
                   <th nowrap="nowrap"><: Log Type :>:</th>
                   <td>
                     <select name="log_type_id" id="log_type_id">
                        <% loop ErrorTypes %>
                        <option value="<& id &>"<& selected &>><& name &></option>
                        <% endloop %>
                     </select>
                   </td>
               </tr-->
                <tr>
                    <th></th>
                    <td>
                       <button class="btn btn-primary" type="submit" id="button" name="ViewLogs" value="1">View Logs</button>
                    </td>
                </tr>
            </table>
            <@ CSFR_Tag @>
        </form>        
    </div>
    <@ showFullLog @>

    <!-- <% if isDisplayLogs %>
    	<div class="zform_wrapper">
       	    <h2><@ ErrorType @></h2>
	    <div class="logview-container" style="overflow: auto;">
	       	<@ LogFile @>
	    </div>
	</div>
   <% endif %> -->
</div>
<script>
	/*var form_msgs = [];
	form_msgs['empty_domain'] = "<: Domain cannot be empty :>!";
	form_msgs['empty_domain_to'] = "<: Please select a valid domain to forward to :>!";
	form_msgs['domain_forward_delete_dialog_title'] = "<: Delete Domain Forward :>?";
	form_msgs['domain_forward_delete_confirm_msg'] = "<: Are you sure to delete selected domain forward :>?";
	form_msgs['domain_forward_ok_btn_label'] = "<: Yes :>";
	form_msgs['domain_forward_cancel_btn_label'] = "<: Cancel :>";*/
</script>
<style>
#domain_id{width: 250px;height: 35px;}
.btn-primary{margin-top:20px}
</style>