templates/index.html: Use Bootstrap form components

This commit is contained in:
Alan Orth 2021-03-13 13:50:46 +02:00
parent 3715c5e976
commit f79be86361
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
1 changed files with 6 additions and 3 deletions

View File

@ -6,10 +6,13 @@
<main class="flex-shrink-0">
<div class="container py-3">
<p class="lead">The DSpace CSV Metadata Quality Checker is a pipeline of sanity checks and automated fixes for a number of common issues in metadata files.</p>
<p>Select a CSV file to process.</p>
<form method="POST" action="" enctype="multipart/form-data">
<p><input type="file" name="file" accept=".csv"></p>
<p><input type="submit" value="Submit"></p>
<div class="mb-3">
<label for="formFile" class="form-label">Select a CSV file to process</label>
<input class="form-control" type="file" id="formFile" name="file" accept=".csv">
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>
</main>