15 lines
No EOL
561 B
PHP
15 lines
No EOL
561 B
PHP
<?php include(__DIR__."/../layout/top.php"); ?>
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<h3>New Password</h3>
|
|
<p>Enter a new Password you want to login with.</p>
|
|
<form method="post" id="login">
|
|
<b>New Password</b>
|
|
<input class="form-control" name="password" type="password">
|
|
<br>
|
|
<input type="submit" value="Change Password" class="btn btn-success">
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
<?php include(__DIR__."/../layout/bottom.php"); ?>
|