123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <!doctype html>
- <!--suppress HtmlUnknownTarget -->
- <html lang="en">
- <head>
- <!-- Required meta tags -->
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
- <!-- Bootstrap CSS -->
- <!--suppress SpellCheckingInspection -->
- <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
- integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
- <title>Grants Application - writer home</title>
- </head>
- <body>
- <div class="mx-auto" style="width:50%;text-align:center;">
- <h1 id="pageHeader">Writer Specify Files</h1>
- <div th:insert="~{fragments/layout::banner}"></div>
- </div>
- <div class="container border border-info
- rounded-3 text-center p-4">
- <form th:object="${writerFiles}" th:action="@{/tex}" method="post">
- <div class="form-group row justify-content-center">
- <div class="col" style="margin-right:20px;">
- <label for="latexFileName">Latex File (input):</label>
- <input class="form-control" id="latexFileName"
- th:field="*{latexFileName}" type="text" readonly>
- </div>
- <div class="col" style="margin-right:20px;">
- <label for="pdfFileName">Latex File (input):</label>
- <input class="form-control" id="pdfFileName"
- th:field="*{pdfFileName}" type="text"
- readonly>
- </div>
- </div>
- <div class="form-group row justify-content-center">
- <div class="col" style="margin-right:20px;">
- <label for="status">Status:</label>
- <input class="form-control" id="status"
- th:field="*{status}" type="text"
- readonly>
- </div>
- </div>
- <button type="submit" class="btn btn-primary">Start</button>
- </form>
- </div>
- </body>
- </html>
|