\!/ KyuuKazami \!/

Path : /home/kohli/public_html/application/views/email_templates/
Upload :
Current File : /home/kohli/public_html/application/views/email_templates/register_view_tpl.php

<html>
    <head>
        <title>Welcome to {company_name}</title>
        <style type="text/css">
            #outlook a{padding:0;} /* Force Outlook to provide a "view in browser" button. */
			body{width:100% !important;} .ReadMsgBody{width:100%;} .ExternalClass{width:100%;} /* Force Hotmail to display emails at full width */
			body{-webkit-text-size-adjust:none;} /* Prevent Webkit platforms from changing default text sizes. */
			/* Reset Styles */
			body{margin:0; padding:0;}
			img{border:0; height:auto; line-height:100%; outline:none; text-decoration:none;}
            table {width:100%;}
            table td{border-collapse:collapse;padding:10px;}
            .links{background:#cccccc;color:#000000;padding:4px 10px;} 
        </style>
    </head>
    <body style='width:600px;font-style: arial;color:#000000;font-size:14px;'>
        <table>
            <tr>
                <td colspan="5" align="center"><img src="<?php echo base_url() ?>assets/uploads/files/logo/<?php echo $this->common_lib->get_setting("logo") ?>" /></td>
            </tr>
        </table>
        <div>
            <h2 style='color:#000000;text-align:center;margin:5px 0px;'>Welcome to {company_name}</h2>
            <p style="margin:10px 0px;color:#777777">Thank you for registering with us. Your login details are as follows:</p>
            <br />
            <p>User Name: <span>{username}</span></p>
            <p>Password: <span>{password}</span></p>        
        </div>
        <br />
        <div>
            <p>But your account will not worked untill you will not verify your email address by clicking on the following link:</p>
            <p><b><a href="{verification_link}">{verification_link}</a></b></p>
        </div>
    </body>
</html>

@KyuuKazami