1
0
forked from shaytan/rdgen
Files
rdgen-sunlix/rdgenerator/templates/waiting.html

15 lines
438 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}}&platform={{platform}}');
}, 5000); // 5000 milliseconds = 5 seconds
</script>
</body>
</html>