Skip to content

Commit

Permalink
Updated interface slightly, replaced logo. Added whitespace to config.
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Mosior committed Jan 14, 2013
1 parent 0c35ab9 commit 4c1c6dc
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
5 changes: 4 additions & 1 deletion pwpusher_private/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,15 @@
//The installation location (path to where PHPasswordPusher is hosted)
$installation = '/phpw';


//Encryption and security:
//This is the encryption key. Change it to something secret.
$key = "change this key";

//Require Apache user authentication.
$requireAuth = false;


//Email:

//It is highly recommended that authentication be required when enabling the
Expand All @@ -44,13 +46,14 @@
//authenticated user. For example, if your apache auth username is 'user', and
//the assumed domain is 'your.domain', the sender would be '[email protected]'.


//User interface misc.:

//Logo location relative to the deploy directory
$logo = "phpwpusher.png";

//Site Title
$title = 'PHPasswordPusher';
$title = 'PHPassword Pusher';

//Enable display of the URL to the user.
$displayURL = true;
Expand Down
12 changes: 4 additions & 8 deletions pwpusher_private/interface.php
Original file line number Diff line number Diff line change
Expand Up @@ -88,13 +88,6 @@ function getNavBar()
$returnString = '<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container" >
<!-- <img style="
height:75px;
display:block;
position:absolute;
left:0px;
top:45px;"
src="' . $installation . '/' . $logo . '" /> -->
<div class="brand">' . $title . '</div>
<ul class="nav">';

Expand All @@ -117,7 +110,10 @@ function getNavBar()
</div>
</div>
</div>
<div class="container">';
<div class="container">
<img style="height:50px; display:block;
margin-left:auto; margin-right:auto;"
src="' . $installation . '/' . $logo . '" />';

return $returnString;
}
Expand Down
Binary file modified pwpusher_public/phpwpusher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 4c1c6dc

Please sign in to comment.