Files
rdgen/rdgenerator/templates/waiting.html
Bryan Gerlach b401aa531b initial commit
2024-09-24 16:04:47 -05:00

15 lines
416 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Generating Exe File</title>
</head>
<body>
Please wait...This can take 10-15 minutes (or longer if there are other users).<br><br>
Status: {{status}}
<script>
setTimeout(function() {
window.location.replace('/check_for_file?filename={{filename}}&uuid={{uuid}}');
}, 5000); // 5000 milliseconds = 5 seconds
</script>
</body>
</html>