Skip to content

Commit

Permalink
Tidied up some grammar, spelling and capitalisation
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt committed Dec 13, 2017
1 parent 0826dce commit a9f7442
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions NavCoinnotes.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<?php
$notes='test';
?>
$notes='Enter your notes here';
?>
10 changes: 5 additions & 5 deletions comment.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<?php
<?php
include ("header.php");
include ("pass.php");
$txid = $_POST['txid'];

?>
<center><p>Add comment to transaction <?php echo $_POST['txid']; ?>
<center><p>Add a comment to the transaction <?php echo $_POST['txid']; ?>
<div class="panel panel-default">

<table class="table-hover table-condensed table-bordered table">
<form action="addcomment" method="POST"><input type="hidden">
<tr>
Expand All @@ -22,4 +22,4 @@
</div>

</div>
<?php include ("footer.php"); ?>
<?php include ("footer.php"); ?>
16 changes: 8 additions & 8 deletions control.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
</div><!-- /.well -->

<div class="well">
<b><a name="navtech">Navtech</a></b>
<b><a name="navtech">NAVTech</a></b>
<div style="padding: 5px 15px 5px;">
<div class="row">
<div class="col-lg-2">
Expand Down Expand Up @@ -87,7 +87,7 @@
<span class="input-group-btn">
<button class='btn btn-default' type="submit" value="getaddressesbyaccount">Get Addresses By Account</button>
</span>
<input class="form-control" type="text" name="account" placeholder="Leave blank for default account" >
<input class="form-control" type="text" name="account" placeholder="Leave blank to use the default account" >
</div><!-- /input-group -->
</form>
</div><!-- /.col-lg-5 -->
Expand All @@ -99,7 +99,7 @@
<span class="input-group-btn">
<button class='btn btn-default' type="submit" value="getnewaddress">Get New Address</button>
</span>
<input class="form-control" type="text" name="account" placeholder="Enter account you want to get a new address for.">
<input class="form-control" type="text" name="account" placeholder="Enter the account you want to get a new address for">
</div><!-- /input-group -->
</form>
</div><!-- /.col-lg-6 -->
Expand All @@ -109,7 +109,7 @@
<span class="input-group-btn">
<button class='btn btn-default' type="submit" value="getaccount">Get Account</button>
</span>
<input class="form-control" type="text" name="address" placeholder="Address you would like to know the account for.">
<input class="form-control" type="text" name="address" placeholder="Enter an address you would like to know the account for">
</div><!-- /input-group -->
</form>
</div><!-- /.col-lg-6 -->
Expand Down Expand Up @@ -196,7 +196,7 @@
<span class="input-group-btn">
<button class='btn btn-default' type="submit" value="listtransactions">List Transactions</button>
</span>
<input class="form-control" type="text" name="account" placeholder='Account:Use * for all leave blank for default account.'>
<input class="form-control" type="text" name="account" placeholder='Account: Use * for all accounts, leave blank for the default account.'>
</div><!-- /input-group -->
</div><!-- /.col-lg-6 -->
<div class="col-lg-6">
Expand Down Expand Up @@ -248,7 +248,7 @@
</div><!-- /.row -->
<div class="row">
<div class="col-lg-6">
<input class="form-control" type="text" name="amount" placeholder="amount">
<input class="form-control" type="text" name="amount" placeholder="Amount">
</div><!-- /.col-lg-6 -->
<div class="col-lg-6">
<input class="form-control" type="text" name="comment" placeholder="Comment">
Expand Down Expand Up @@ -278,7 +278,7 @@
<span class="input-group-btn">
<button class='btn btn-default' type="submit" value="encryptwallet">Encrypt Wallet</button>
</span>
<input class="form-control" type="password" name="password" placeholder="Enter password you would like to use">
<input class="form-control" type="password" name="password" placeholder="Enter the password you would like to use">
</div><!-- /input-group -->
</form>
</div><!-- /.col-lg-8 -->
Expand Down Expand Up @@ -315,7 +315,7 @@
<span class="input-group-btn">
<button class='btn btn-default' type="submit" value="unlockwallet">Unlock Wallet To Send</button>
</span>
<input class="form-control" type="password" name="password" placeholder="password">
<input class="form-control" type="password" name="password" placeholder="Password">
</div><!-- /input-group -->
</form>
</div><!-- /.col-lg-6 -->
Expand Down
4 changes: 2 additions & 2 deletions index.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
<h4><?php echo $longCurrency; ?> Value: <font color='green'><?php echo "{$symbol}{$fiatValue}"; ?></font></h4><br>
<div class="col-lg-8">
<form action="lockcontrol">
<button class='btn btn-default btn-block'>Your Wallet Is <?php print($lockState)?> Click To Change</button>
<button class='btn btn-default btn-block'>Your Wallet Is <?php print($lockState)?>Click To Change</button>
</form>
</div>
</div>
Expand All @@ -75,7 +75,7 @@
<form name="sql-data" method="post" action="<?php $_SERVER['PHP_SELF']?>">
<button class='btn btn-default' type="submit" name="show" value="show">Show private key</button>
</form>
<h4>wallet must be unlocked for sending, or not encrypted.</h4></center>
<h4>Wallet must be unlocked for sending, or not encrypted.</h4></center>
<?php
}
?>
Expand Down

0 comments on commit a9f7442

Please sign in to comment.