Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
alxhggrty authored Dec 6, 2018
1 parent ffcbccb commit d32a688
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 14 deletions.
6 changes: 4 additions & 2 deletions clientCancelListing.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</head>
<link rel="stylesheet" href="stylesheet.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<body>
<body style="background-color:slategrey;">
<img src="reynholm.jpg" height=5% width=5% />
<ul class="nav nav-tabs">
<li><a href="clientLanding.php">Home</a></li>
Expand All @@ -16,6 +16,7 @@
<li><a href="clientAccountManagement.php">Manage Account</a></li>
<li class="active"><a href="">Cancel Listing</a></li>
</ul>
<div style='margin-left: auto; display: block; margin-right: auto;width: 650px;'>
<?php
$state = "C";//cancelled
$CDL = "N/A";//not applicable
Expand Down Expand Up @@ -68,6 +69,7 @@
echo "an error occured, please try again and ensure that the data is valid.";
}
?>

</div>
<p><a href="logout.php">Click here to log out</a></p>
</body>
</html>
9 changes: 6 additions & 3 deletions clientLogin.php
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@
<img src="reynholm.jpg" height="5%" width="5%">
</nav>
<form method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>" >
<div><table>
<div style='margin-left: auto; display: block; margin-right: auto;width: 300px;'>
<table style="border:0px white;">
<tr>
<td>email</td>
</tr>
Expand Down Expand Up @@ -104,8 +105,10 @@
</tr>
</table>
</form>


<a href="createClient.php">Create an account.</a></div>

<a href="createClient.php">Create an account.</a>
</br>
<a href=who.html>Return to Account Selection</a></div>
</body>
</html>
9 changes: 9 additions & 0 deletions createClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,14 @@
<style>
.errlabel {color:red;}
</style>

<link rel="stylesheet" href="stylesheet.css" />

</head>
<body>
<div style='margin-left: auto; display: block; margin-right: auto;width: 300px;'>
NEW CLIENT INFORMATION

<form method="post" action="<?php echo $_SERVER['PHP_SELF']?>"
<label>email:
<input type="text" name="email" value="<?php echo $email; ?>" />
Expand Down Expand Up @@ -88,4 +94,7 @@
<br />

<input type="submit" name="submit" value="Submit" />
</br>
<a href=who.html>Return to Account Selection</a>
</div>
</body>
22 changes: 13 additions & 9 deletions editListingConfirm.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,17 @@
<link rel="stylesheet" href="stylesheet.css" />
</head>
<body>
<nav>
<img src="reynholm.jpg" height="5%" width="5%">
<a href="clientLanding.php">Home</a>
<a href="clientListingsPage.php">All Loads</a>
<a href="clientCurrentLoads.php">My Current Loads</a>
<a href="clientPastLoads.php">My Past Loads</a>
<a href="createListing.php">Create Listing</a>
</nav>
<img src="reynholm.jpg" height=5% width=5% />
<ul class="nav nav-tabs">
<li><a href="clientLanding.php">Home</a></li>
<li><a href="clientListingsPage.php">Your Listings</a></li>
<li><a href="clientCurrentLoads.php">Loads in Transit</a></li>
<li><a href="clientPastLoads.php">Past Loads</a></li>
<li><a href="createListing.php">Create Listing</a></li>
<li><a href="clientAccountManagement.php">Manage Account</a></li>
<li><a href="">Listing Cancelled</a></li>
</ul>
<div style='margin-left: auto; display: block; margin-right: auto;width: 650px;'>
<?php


Expand Down Expand Up @@ -80,7 +83,8 @@
echo "an error occured, please try again and ensure that the data is valid.";
}
?>
<a href="clientListingsPage.php">Click Here to Return to the Listings Page</a>
</div>
<p><a href="clientListingsPage.php">Click Here to Return to the Listings Page</a></p>
<p><a href="logout.php">Click here to log out</a></p>
</body>
</html>

0 comments on commit d32a688

Please sign in to comment.