SpeedyF/views/processing.ejs

19 lines
643 B
Plaintext
Raw Normal View History

2024-05-01 13:39:29 +01:00
<!DOCTYPE html>
<html lang="en">
<head>
<title>Processing</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/style.css">
<script>const job_id = "<%= job_id %>"</script>
<script src="/checkjob.js"></script>
</head>
<body>
<h1>Please wait</h1>
<p>Job ID: <%= job_id %></p>
<br>
<p>Job State: <span id="job_state"></span></p>
<p>Job Error: <span id="job_error">None</span></p>
<p><a href="/download?job_id=<%= job_id %>">Download</a></p>
</body>
</html>