56 lines
2.3 KiB
HTML
56 lines
2.3 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html th:lang="${#locale.toString()}" th:lang-direction="#{language.direction}" xmlns:th="http://www.thymeleaf.org">
|
||
|
|
||
|
<th:block th:insert="~{fragments/common :: head(title=#{autoRedact.title})}"></th:block>
|
||
|
|
||
|
|
||
|
<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="#{autoRedact.header}"></h2>
|
||
|
|
||
|
<form action="/auto-redact" method="post" enctype="multipart/form-data">
|
||
|
<div class="mb-3">
|
||
|
<input type="file" class="form-control" id="fileInput" name="fileInput" required accept="application/pdf">
|
||
|
</div>
|
||
|
|
||
|
<div class="mb-3">
|
||
|
<label for="listOfText" class="form-label">Texts to Redact (line-separated)</label>
|
||
|
<textarea class="form-control" id="listOfText" name="listOfText" rows="4" required placeholder="e.g. Confidential,Top-Secret"></textarea>
|
||
|
</div>
|
||
|
|
||
|
<div class="mb-3 form-check">
|
||
|
<input type="checkbox" class="form-check-input" id="useRegex" name="useRegex">
|
||
|
<label class="form-check-label" for="useRegex">Use Regex</label>
|
||
|
</div>
|
||
|
|
||
|
<div class="mb-3 form-check">
|
||
|
<input type="checkbox" class="form-check-input" id="wholeWordSearch" name="wholeWordSearch">
|
||
|
<label class="form-check-label" for="wholeWordSearch">Whole Word Search</label>
|
||
|
</div>
|
||
|
|
||
|
<div class="mb-3">
|
||
|
<label for="customPadding" class="form-label">Custom Padding</label>
|
||
|
<input type="number" step="0.1" class="form-control" id="customPadding" name="customPadding" placeholder="0.0" value="0.1">
|
||
|
</div>
|
||
|
|
||
|
<div class="mb-3 form-check">
|
||
|
<input type="checkbox" class="form-check-input" id="convertPDFToImage" name="convertPDFToImage" checked>
|
||
|
<label class="form-check-label" for="convertPDFToImage">Convert PDF to Image</label>
|
||
|
</div>
|
||
|
|
||
|
<button type="submit" class="btn btn-primary">Submit</button>
|
||
|
</form>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div th:insert="~{fragments/footer.html :: footer}"></div>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|