viewUsers.jsp
2.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<%@ page contentType="text/html" pageEncoding="UTF-8" %>
<%@ taglib uri="http://www.springframework.org/tags" prefix="spring" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<jsp:include page="header.jsp">
<jsp:param name="pageTitle" value="View users page"/>
</jsp:include>
<body>
<div class="row headerSpace">
</div>
<div class="row">
<div class="addDebt">
<form>
<div class="form-group">
<div class="control-group">
<label for="debt">Somme de la dette</label>
</div>
<div class="control-group control-group-big">
<input type="number" class="form-control inputDebt" id="sommeDette"/>
</div>
<div class="control-group">
<label for="debtFor">A : </label>
</div>
<div class="control-group control-group-big">
<input type="text" class="form-control inputDebt" id="username"/>
</div>
<div class="control-group upButton">
<button class="btn btn-danger" type="submit" onclick="updateDebtOfUser()">Update</button>
</div>
</div>
</form>
</div>
</div>
<div class="row">
<table class="table table-stripped debtsTable">
<thead>
<td>Emprunteur</td>
<td>Somme</td>
<td>Action</td>
</thead>
<tbody id="dettes">
</tbody>
</table>
</div>
<!-- <ul>
<li><a href="newUser"><spring:message code="new.user.main.header"/></a></li>
<li><a href="login?logout"><spring:message code="view.users.main.logout"/></a></li>
</ul>-->
</body>
<jsp:include page="footer.jsp"/>