tex.html 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <!doctype html>
  2. <!--suppress HtmlUnknownTarget -->
  3. <html lang="en">
  4. <head>
  5. <!-- Required meta tags -->
  6. <meta charset="utf-8">
  7. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  8. <!-- Bootstrap CSS -->
  9. <!--suppress SpellCheckingInspection -->
  10. <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
  11. integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
  12. <title>Grants Application - writer home</title>
  13. </head>
  14. <body>
  15. <div class="mx-auto" style="width:50%;text-align:center;">
  16. <h1 id="pageHeader">Writer Specify Files</h1>
  17. <div th:insert="~{fragments/layout::banner}"></div>
  18. </div>
  19. <div class="container border border-info
  20. rounded-3 text-center p-4">
  21. <form th:object="${writerFiles}" th:action="@{/tex}" method="post">
  22. <div class="form-group row justify-content-center">
  23. <div class="col" style="margin-right:20px;">
  24. <label for="latexFileName">Latex File (input):</label>
  25. <input class="form-control" id="latexFileName"
  26. th:field="*{latexFileName}" type="text" readonly>
  27. </div>
  28. <div class="col" style="margin-right:20px;">
  29. <label for="pdfFileName">Latex File (input):</label>
  30. <input class="form-control" id="pdfFileName"
  31. th:field="*{pdfFileName}" type="text"
  32. readonly>
  33. </div>
  34. </div>
  35. <div class="form-group row justify-content-center">
  36. <div class="col" style="margin-right:20px;">
  37. <label for="status">Status:</label>
  38. <input class="form-control" id="status"
  39. th:field="*{status}" type="text"
  40. readonly>
  41. </div>
  42. </div>
  43. <button type="submit" class="btn btn-primary">Start</button>
  44. </form>
  45. </div>
  46. </body>
  47. </html>