103 lines
4.7 KiB
HTML
103 lines
4.7 KiB
HTML
{% include "header.html" %}
|
|
|
|
<body>
|
|
<h1 class="text-center">LIST USERS</h1>
|
|
<div class="container">
|
|
<table class="table table-striped table-dark table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">Username</th>
|
|
<th scope="col">Admin</th>
|
|
<th style="text-align: right" scope="col">Change Password</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for x in data["users"] %}
|
|
<tr scope="row">
|
|
<td>{{x[0]}}</td>
|
|
<td>{% if x[1] == 1 %} Yes {% else %} No {% endif %}</td>
|
|
<td align="right"><form action="/post" method="POST"><input style="width: 70%; display: inline;" class="form-control" type="text" name="newpass" id="addbox"><button class="btn btn-secondary" type="submit" name="updatepass" value="{{x[2]}}"> Change Password </button></form></td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<hr>
|
|
<h1 class="text-center">ADD NEW USERS</h1>
|
|
<div class="container">
|
|
<form class="loginform" action="/post" method="POST">
|
|
<div class="form-group row">
|
|
<label for="addbox" class="col-sm-2 col-form-label" >Username</label>
|
|
<div class="col-sm-10">
|
|
<input type=text class="form-control" id="addbox" type="text" name="username" />
|
|
</div>
|
|
</div>
|
|
<div class="form-group row">
|
|
<label for="addbox" class="col-sm-2 col-form-label" >Password</label>
|
|
<div class="col-sm-10">
|
|
<input class="form-control" id="addbox" type="password" name="password"/>
|
|
</div>
|
|
<div class="form-group" style="padding-top: 10px; padding-left: 10px;">
|
|
<input class="btn btn-secondary" id="logbtn" type="submit" name="newuser" value="Create new account" />
|
|
</div>
|
|
</div>
|
|
</form>
|
|
<h1 class="text-center">ADD LIST</h1>
|
|
<form class="addList" action="/post" method="POST">
|
|
<div class="form-group row">
|
|
<label for="addlist" class="col-sm-2 col-form-label" >List</label>
|
|
<div class="col-sm-10">
|
|
<input type=text class="form-control" id="addlist" type="text" name="addList" />
|
|
</div>
|
|
</div>
|
|
<div class="form-group row">
|
|
<div class="form-group" style="padding-top: 10px; padding-left: 10px;">
|
|
<input class="btn btn-secondary" id="addlist" type="submit" name="newlist" value="Add new list" />
|
|
</div>
|
|
</div>
|
|
</form>
|
|
<div id="logout" style="padding-top: 3px;">
|
|
<a href="/">
|
|
<button onclick="window.location='admin'" class="btn btn-secondary"><i style="padding-top: 3px;"
|
|
class="material-icons">
|
|
home
|
|
</i></button></a>
|
|
</div>
|
|
</div>
|
|
<h1 class="text-center">Add User To List</h1>
|
|
<div class="container">
|
|
<table class="table table-striped table-dark table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">Username</th>
|
|
<th scope="col">User</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for x in data["lists"] %}
|
|
<tr scope="row">
|
|
<td>{{data["lists"][x]}}</td>
|
|
<td><form action="/post" method="POST">
|
|
<select id="addbox" name="add2list" class="custom-select custom-select-lg mb-3">
|
|
{% for userid in data["users"] %}
|
|
<option type="submit" value="{{userid[2]}}" id="addbox" name="User2list">{{userid[0].title()}}</option>
|
|
{% endfor %}
|
|
</select> <button class="btn btn-secondary" type="submit" value="x"> Add User To List </button>
|
|
<input name="listID" value={{x}} type="hidden"></form></td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{% for x in data["lists"] %}
|
|
{{data["lists"][x]}}
|
|
{% endfor %}
|
|
<!-- 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> |