mirror of
https://github.com/itflow-org/itflow
synced 2026-03-01 11:24:52 +00:00
Added Client Details and Contacts module and invoice stuff
This commit is contained in:
23
client_details.php
Normal file
23
client_details.php
Normal 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>
|
||||
Reference in New Issue
Block a user