File size: 1,078 Bytes
a34207e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Minecraft Backup UI</title>
    <style>
        body { font-family: Arial, sans-serif; padding: 20px; max-width: 600px; margin: auto; }
        input, button { padding: 10px; margin-top: 10px; width: 100%; font-size: 1em; }
        .status { margin-top: 20px; background: #f0f0f0; padding: 10px; border-radius: 5px; }
    </style>
</head>
<body>
    <h2>Minecraft Backup Controller</h2>
    <form method="post">
        <label for="interval">Set Interval (minutes):</label>
        <input type="number" id="interval" name="interval" value="{{ interval }}" min="1">
        <button type="submit">Set Timer</button>
    </form>
    <form method="post">
        <input type="hidden" name="manual_run" value="1">
        <button type="submit">Run Backup Now</button>
    </form>
    <div class="status">
        <p><strong>Last Run:</strong> {{ last_run }}</p>
        <p><strong>Status:</strong> {{ result }}</p>
    </div>
</body>
</html>