Added Client Details and Contacts module and invoice stuff

This commit is contained in:
root
2019-03-18 02:36:47 -04:00
parent d83ced4140
commit 9f067939d6
6 changed files with 328 additions and 0 deletions

23
client_details.php Normal file
View File

@@ -0,0 +1,23 @@
<table class="table">
<tr>
<td><i class="fa fa-map-marker"></i></td>
<td>
<a href="https://maps.google.com?q=<?php echo "$client_address $client_zip"; ?>" target="_blank">
<?php echo $client_address; ?>
<br>
<?php echo "$client_city $client_state $client_zip"; ?>
</a>
</td>
<tr>
<td><i class="fa fa-phone"></i></td>
<td><?php echo $client_phone; ?></td>
</tr>
<tr>
<td><i class="fa fa-envelope"></i></td>
<td><a href="mailto:<?php echo $client_email; ?>"><?php echo $client_email; ?></a></td>
</tr>
<tr>
<td><i class="fa fa-globe"></i></td>
<td><a href="http://<?php echo $client_website; ?>"><?php echo $client_website; ?></a></td>
</tr>
</table>