| Current Path : /home2/wtmwscom/public_html/member/ |
| Current File : /home2/wtmwscom/public_html/member/change_transaction_password.php |
<?php
$title= "Change Transaction Password";
include 'header.php';
?>
<style type="text/css">
#comments label{
width: 220px;
}
</style>
<h1>Change Transaction Password</h1>
<section id="comments">
<?php echo getMessage();?>
<form name="form" id="form" action="change_transaction_password_model.php" method="post">
<p>
<label for="transaction_password">Transaction Password <span>*</span></label>
<input type="password" name="transaction_password" id="transaction_password" required="required" maxlength="20">
</p>
<p>
<label for="new_transaction_password">New Transaction Password <span>*</span></label>
<input type="password" name="new_transaction_password" id="new_transaction_password" pattern="\w{6,20}" onchange="form.confirm_password.pattern = this.value;" required="required" maxlength="20">
</p>
<p>
<label for="confirm_transaction_password">Confirm New Transaction Password <span>*</span></label>
<input type="password" name="confirm_transaction_password" id="confirm_transaction_password" pattern="\w{6,20}" required="required" maxlength="20">
</p>
<p><br />
<input style="position: relative; left: 200px;" name="submit" type="submit" id="submit" value="Save">
</p>
</form>
</section>
<?php include 'footer.php';?>