\!/ KyuuKazami \!/

Path : /home/kohli/public_html/application/views/user/
Upload :
Current File : /home/kohli/public_html/application/views/user/account.php

<div class="main">
      <div class="container">
        <ul class="breadcrumb">
            <li><a href="index.html">Home</a></li>
            <li><a href="#">Store</a></li>
            <li class="active">My Account Page</li>
        </ul>
        <!-- BEGIN SIDEBAR & CONTENT -->
        <div class="row margin-bottom-40">
          <!-- BEGIN SIDEBAR -->
          <?php $this->load->view("layout/myaccount_sidebar_block")?>
          <!-- END SIDEBAR -->

          <!-- BEGIN CONTENT -->
          <div class="col-md-9 col-sm-7">
            <?php $this->load->view("messages");?>
            <?php            
            if($this->common_lib->get_session("sess_status",true) == "Pending"){
                echo $this->common_lib->render_messages('
                <h3>Thank You! Please Confirm Your Account</h3>
                <p>Thank you for creating a '.$this->common_lib->site_title().' account. Please check your email in the next few minutes to confirm your account.</p>
                <p>If you didn\'t receive the account confirmation email, we can send you another email to confirm your account now.</p>
                ',"info");
                ?>
                <a href="<?php echo site_url("user/resend_verification_email/".$this->common_lib->get_session("sess_username",true)) ?>" class="btn btn-primary">Resend Verification Email</a>
                <?php
            }
            ?> 
            <h1>My Account Page</h1>
            <div class="content-page">
              <div class="col-lg-6">  
              <h3>My Account</h3>
              <ul>
                <li><a href="#">Edit your account information</a></li>
                <li><a href="#">Change your password</a></li>
                <li><a href="#">Modify your address book entries</a></li>
                <li><a href="#">Modify your wish list</a></li>
              </ul>
              </div>              
              <div class="col-lg-6">  
              <h3>My Orders</h3>
              <ul>
                <li><a href="#">View your order history</a></li>
                <li><a href="#">Downloads</a></li>
                <li><a href="#">Your Reward Points</a></li>
                <li><a href="#">View your return requests</a></li>
                <li><a href="#">Your Transactions</a></li>
              </ul>
            </div>
          </div>
          </div>
          <!-- END CONTENT -->
        </div>
        <!-- END SIDEBAR & CONTENT -->
      </div>
    </div>

@KyuuKazami