Removed redundent JS scripts

This commit is contained in:
Benjamyn Love 2020-01-31 09:24:15 +11:00
parent a20e2a4b7b
commit baa755ef6a

View File

@ -1,4 +1,3 @@
<body>
<h1 class="text-center">LIST USERS</h1> <h1 class="text-center">LIST USERS</h1>
<div class="container"> <div class="container">
<table class="table table-striped table-dark table-hover"> <table class="table table-striped table-dark table-hover">
@ -14,7 +13,11 @@
<tr scope="row"> <tr scope="row">
<td>{{x[0]}}</td> <td>{{x[0]}}</td>
<td>{% if x[1] == 1 %} Yes {% else %} No {% endif %}</td> <td>{% if x[1] == 1 %} Yes {% else %} No {% endif %}</td>
<td align="right"><form action="/post" method="POST"><input style=" display: inline;" type="text" name="newpass" id="addbox"><button class="btn btn-secondary" type="submit" name="updatepass" value="{{x[2]}}"> Change Password </button></form></td> <td align="right">
<form action="/post" method="POST"><input style=" display: inline;" type="text" name="newpass"
id="addbox"><button class="btn btn-secondary" type="submit" name="updatepass"
value="{{x[2]}}"> Change Password </button></form>
</td>
</tr> </tr>
{% endfor %} {% endfor %}
</tbody> </tbody>
@ -48,12 +51,5 @@
</i></button></a> </i></button></a>
</div> </div>
</div> </div>
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<!-- Popper JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>
</body>
</html> </html>