mirror of
https://github.com/ilri/csv-metadata-quality-web.git
synced 2024-11-16 11:57:04 +01:00
23 lines
848 B
HTML
23 lines
848 B
HTML
<!doctype html>
|
|
<html lang="en" class="h-100">
|
|
{% include 'head.html' %}
|
|
<body class="d-flex flex-column h-100">
|
|
{% include 'header.html' %}
|
|
<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>
|
|
<form method="POST" action="" enctype="multipart/form-data">
|
|
<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>
|
|
|
|
{% include 'footer.html' %}
|
|
</body>
|
|
</html>
|