From 5da03ebf06fcdbcea6e1123ae3d68e1dfd78f8d5 Mon Sep 17 00:00:00 2001 From: "Lange, Dr. Herbert" <herbert.lange@uni-hamburg.de> Date: Fri, 5 Aug 2022 14:47:09 +0200 Subject: [PATCH] add some comments and other minor changes --- src/main/resources/templates/root.vm | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/main/resources/templates/root.vm b/src/main/resources/templates/root.vm index 137c951..a3f799a 100644 --- a/src/main/resources/templates/root.vm +++ b/src/main/resources/templates/root.vm @@ -1,5 +1,6 @@ <html> <head> +<meta charset="UTF-8"> <script src="static/bootstrap.js"></script> <script src="static/jquery-3.6.0.min.js"></script> <script src="static/main.js"></script> @@ -9,12 +10,16 @@ <body> <h1>Corpus services</h1> <div class="col lg"> + <!-- Corpus selection --> <div class="row"> + <label of="corpus-files">Corpus directory:</label> <input type="file" class="form-control" id="corpus-files" webkitdirectory mozdirectory msdirectory odirectory directory> </div> + <!-- Filtering by file extension --> <div class="row"> - <input type="text" id="file-exts" value="txt"> + <label of="file-exts">File filter (by file extensions):</label> + <input type="text" id="file-exts" value="*"> </div> <div class="row"> <a href="#" class="btn btn-primary" id="send-files">Send files and check data</a> -- GitLab