2023-02-03 21:26:35 +01:00
|
|
|
<!DOCTYPE html>
|
2023-02-07 21:14:03 +01:00
|
|
|
<html th:lang="${#locale.language}" th:lang-direction="#{language.direction}" xmlns:th="http://www.thymeleaf.org">
|
2023-02-03 21:26:35 +01:00
|
|
|
|
2023-02-05 13:54:48 +01:00
|
|
|
<th:block th:insert="~{fragments/common :: head(title=#{permissions.title})}"></th:block>
|
2023-02-03 21:26:35 +01:00
|
|
|
|
|
|
|
|
2023-02-11 15:27:15 +01:00
|
|
|
<body>
|
|
|
|
<div id="page-container">
|
|
|
|
<div id="content-wrap">
|
|
|
|
<div th:insert="~{fragments/navbar.html :: navbar}"></div>
|
|
|
|
<br> <br>
|
|
|
|
<div class="container">
|
|
|
|
<div class="row justify-content-center">
|
|
|
|
<div class="col-md-6">
|
|
|
|
<h2 th:text="#{permissions.header}"></h2>
|
|
|
|
<p th:text="#{permissions.warning}"></p>
|
|
|
|
<form action="add-password" method="post" enctype="multipart/form-data">
|
|
|
|
<div class="form-group">
|
|
|
|
<label th:text="#{permissions.selectText.1}"></label>
|
|
|
|
<div th:replace="~{fragments/common :: fileSelector(name='fileInput', multiple=false)}"></div>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label th:text="#{permissions.selectText.2}"></label>
|
|
|
|
<div class="form-check">
|
|
|
|
<input class="form-check-input" type="checkbox" id="canAssembleDocument" name="canAssembleDocument">
|
|
|
|
<label class="form-check-label" for="canAssembleDocument" th:text="#{permissions.selectText.3}"></label>
|
|
|
|
</div>
|
|
|
|
<div class="form-check">
|
|
|
|
<input class="form-check-input" type="checkbox" id="canExtractContent" name="canExtractContent">
|
|
|
|
<label class="form-check-label" for="canExtractContent" th:text="#{permissions.selectText.4}"></label>
|
|
|
|
</div>
|
|
|
|
<div class="form-check">
|
|
|
|
<input class="form-check-input" type="checkbox" id="canExtractForAccessibility" name="canExtractForAccessibility">
|
|
|
|
<label class="form-check-label" for="canExtractForAccessibility" th:text="#{permissions.selectText.5}"></label>
|
|
|
|
</div>
|
|
|
|
<div class="form-check">
|
|
|
|
<input class="form-check-input" type="checkbox" id="canFillInForm" name="canFillInForm">
|
|
|
|
<label class="form-check-label" for="canFillInForm" th:text="#{permissions.selectText.6}"></label>
|
|
|
|
</div>
|
|
|
|
<div class="form-check">
|
|
|
|
<input class="form-check-input" type="checkbox" id="canModify" name="canModify">
|
|
|
|
<label class="form-check-label" for="canModify" th:text="#{permissions.selectText.7}"></label>
|
|
|
|
</div>
|
|
|
|
<div class="form-check">
|
|
|
|
<input class="form-check-input" type="checkbox" id="canModifyAnnotations" name="canModifyAnnotations">
|
|
|
|
<label class="form-check-label" for="canModifyAnnotations" th:text="#{permissions.selectText.8}"></label>
|
|
|
|
</div>
|
|
|
|
<div class="form-check">
|
|
|
|
<input class="form-check-input" type="checkbox" id="canPrint" name="canPrint">
|
|
|
|
<label class="form-check-label" for="canPrint" th:text="#{permissions.selectText.9}"></label>
|
|
|
|
</div>
|
|
|
|
<div class="form-check">
|
|
|
|
<input class="form-check-input" type="checkbox" id="canPrintFaithful" name="canPrintFaithful">
|
|
|
|
<label class="form-check-label" for="canPrintFaithful" th:text="#{permissions.selectText.10}"></label>
|
|
|
|
</div>
|
2023-02-03 21:26:35 +01:00
|
|
|
|
2023-02-11 15:27:15 +01:00
|
|
|
</div>
|
|
|
|
<br />
|
|
|
|
<div class="form-group text-center">
|
|
|
|
<button type="submit" class="btn btn-primary" th:text="#{permissions.submit}"></button>
|
|
|
|
</div>
|
2023-02-03 21:26:35 +01:00
|
|
|
|
2023-02-11 15:27:15 +01:00
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div th:insert="~{fragments/footer.html :: footer}"></div>
|
|
|
|
</div>
|
2023-02-03 21:26:35 +01:00
|
|
|
</body>
|
|
|
|
</html>
|