2021-03-11 14:55:58 +01:00
<!doctype html>
2021-03-11 19:28:42 +01:00
< html lang = "en" class = "h-100" >
2021-03-11 21:41:22 +01:00
{% include 'head.html' %}
2021-03-11 19:28:42 +01:00
< body class = "d-flex flex-column h-100" >
2021-03-12 18:14:49 +01:00
{% include 'header.html' %}
2021-03-11 19:28:42 +01:00
< main class = "flex-shrink-0" >
2021-03-12 18:14:49 +01:00
< div class = "container py-3" >
2021-03-11 19:28:42 +01:00
< 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" >
2021-03-13 12:50:46 +01:00
< 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 >
2021-03-11 19:28:42 +01:00
< / form >
< / div >
< / main >
2021-03-11 21:41:22 +01:00
{% include 'footer.html' %}
2021-03-11 14:55:58 +01:00
< / body >
< / html >