SpeedyF/src/views/upload_err.ejs

15 lines
317 B
Plaintext

<!DOCTYPE html>
<html lang="en">
<head>
<title>Error - <%= code %></title>
</head>
<body>
<h1>Error <%= code %></h1>
<% if (code === 400) { %>
<p>You did not choose a file to upload</p>
<% } else if (code === 415) { %>
<p>You must only upload PDF files</p>
<% } %>
</body>
</html>