-
Notifications
You must be signed in to change notification settings - Fork 341
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create invoice file & starter page template html
- Loading branch information
DESKTOP-RUDG6I0\ANKIT
committed
May 4, 2018
1 parent
f29b8f0
commit 5044a04
Showing
7 changed files
with
307 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<?php include('include/head.php'); ?> | ||
</head> | ||
<body> | ||
<?php include('include/header.php'); ?> | ||
<?php include('include/sidebar.php'); ?> | ||
<div class="main-container"> | ||
<div class="pd-ltr-20 customscroll customscroll-10-p height-100-p xs-pd-20-10"> | ||
<div class="min-height-200px"> | ||
<div class="page-header"> | ||
<div class="row"> | ||
<div class="col-md-6 col-sm-12"> | ||
<div class="title"> | ||
<h4>Form</h4> | ||
</div> | ||
<nav aria-label="breadcrumb" role="navigation"> | ||
<ol class="breadcrumb"> | ||
<li class="breadcrumb-item"><a href="index.php">Home</a></li> | ||
<li class="breadcrumb-item active" aria-current="page">Form</li> | ||
</ol> | ||
</nav> | ||
</div> | ||
<div class="col-md-6 col-sm-12 text-right"> | ||
<div class="dropdown"> | ||
<a class="btn btn-primary dropdown-toggle" href="#" role="button" data-toggle="dropdown"> | ||
January 2018 | ||
</a> | ||
<div class="dropdown-menu dropdown-menu-right"> | ||
<a class="dropdown-item" href="#">Export List</a> | ||
<a class="dropdown-item" href="#">Policies</a> | ||
<a class="dropdown-item" href="#">View Assets</a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="html-editor pd-20 bg-white border-radius-4 box-shadow mb-30"> | ||
</div> | ||
</div> | ||
<?php include('include/footer.php'); ?> | ||
</div> | ||
</div> | ||
<?php include('include/script.php'); ?> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,125 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<?php include('include/head.php'); ?> | ||
</head> | ||
<body> | ||
<?php include('include/header.php'); ?> | ||
<?php include('include/sidebar.php'); ?> | ||
<div class="main-container"> | ||
<div class="pd-ltr-20 customscroll customscroll-10-p height-100-p xs-pd-20-10"> | ||
<div class="min-height-200px"> | ||
<div class="page-header"> | ||
<div class="row"> | ||
<div class="col-md-6 col-sm-12"> | ||
<div class="title"> | ||
<h4>Form</h4> | ||
</div> | ||
<nav aria-label="breadcrumb" role="navigation"> | ||
<ol class="breadcrumb"> | ||
<li class="breadcrumb-item"><a href="index.php">Home</a></li> | ||
<li class="breadcrumb-item active" aria-current="page">Form</li> | ||
</ol> | ||
</nav> | ||
</div> | ||
<div class="col-md-6 col-sm-12 text-right"> | ||
<div class="dropdown"> | ||
<a class="btn btn-primary dropdown-toggle" href="#" role="button" data-toggle="dropdown"> | ||
January 2018 | ||
</a> | ||
<div class="dropdown-menu dropdown-menu-right"> | ||
<a class="dropdown-item" href="#">Export List</a> | ||
<a class="dropdown-item" href="#">Policies</a> | ||
<a class="dropdown-item" href="#">View Assets</a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="invoice-wrap"> | ||
<div class="invoice-box"> | ||
<div class="invoice-header"> | ||
<div class="logo text-center"> | ||
<img src="vendors/images/deskapp-color-logo.png" alt=""> | ||
</div> | ||
</div> | ||
<h4 class="text-center mb-30 weight-600">INVOICE</h4> | ||
<div class="row pb-30"> | ||
<div class="col-md-6"> | ||
<h5 class="mb-15">Client Name</h5> | ||
<p class="font-14 mb-5">Date Issued: <strong class="weight-600">10 Jan 2018</strong></p> | ||
<p class="font-14 mb-5">Invoice No: <strong class="weight-600">4556</strong></p> | ||
</div> | ||
<div class="col-md-6"> | ||
<div class="text-right"> | ||
<p class="font-14 mb-5">Your Name </strong></p> | ||
<p class="font-14 mb-5">Your Address</p> | ||
<p class="font-14 mb-5">City</p> | ||
<p class="font-14 mb-5">Postcode</p> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="invoice-desc pb-30"> | ||
<div class="invoice-desc-head clearfix"> | ||
<div class="invoice-sub">Description</div> | ||
<div class="invoice-rate">Rate</div> | ||
<div class="invoice-hours">Hours</div> | ||
<div class="invoice-subtotal">Subtotal</div> | ||
</div> | ||
<div class="invoice-desc-body"> | ||
<ul> | ||
<li class="clearfix"> | ||
<div class="invoice-sub">Website Design</div> | ||
<div class="invoice-rate">$20</div> | ||
<div class="invoice-hours">100</div> | ||
<div class="invoice-subtotal"><span class="weight-600">$2000</span></div> | ||
</li> | ||
<li class="clearfix"> | ||
<div class="invoice-sub">Logo Design</div> | ||
<div class="invoice-rate">$20</div> | ||
<div class="invoice-hours">100</div> | ||
<div class="invoice-subtotal"><span class="weight-600">$2000</span></div> | ||
</li> | ||
<li class="clearfix"> | ||
<div class="invoice-sub">Website Design</div> | ||
<div class="invoice-rate">$20</div> | ||
<div class="invoice-hours">100</div> | ||
<div class="invoice-subtotal"><span class="weight-600">$2000</span></div> | ||
</li> | ||
<li class="clearfix"> | ||
<div class="invoice-sub">Logo Design</div> | ||
<div class="invoice-rate">$20</div> | ||
<div class="invoice-hours">100</div> | ||
<div class="invoice-subtotal"><span class="weight-600">$2000</span></div> | ||
</li> | ||
</ul> | ||
</div> | ||
<div class="invoice-desc-footer"> | ||
<div class="invoice-desc-head clearfix"> | ||
<div class="invoice-sub">Bank Info</div> | ||
<div class="invoice-rate">Due By</div> | ||
<div class="invoice-subtotal">Total Due</div> | ||
</div> | ||
<div class="invoice-desc-body"> | ||
<ul> | ||
<li class="clearfix"> | ||
<div class="invoice-sub"> | ||
<p class="font-14 mb-5">Account No: <strong class="weight-600">123 456 789</strong></p> | ||
<p class="font-14 mb-5">Code: <strong class="weight-600">4556</strong></p> | ||
</div> | ||
<div class="invoice-rate font-20 weight-600">10 Jan 2018</div> | ||
<div class="invoice-subtotal"><span class="weight-600 font-24 text-danger">$8000</span></div> | ||
</li> | ||
</ul> | ||
</div> | ||
</div> | ||
</div> | ||
<h4 class="text-center pb-20">Thank You!!</h4> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<?php include('include/script.php'); ?> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.