<!-- This file is part of Linode Manager Classic. Linode Manager Classic is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Linode Manager Classic is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Linode Manager Classic. If not, see <https://www.gnu.org/licenses/>. --> <!DOCTYPE HTML> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>LMC - Backups</title> <link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" /> <link rel="stylesheet" type="text/css" href="backups.css" /> <script src="backups.js" type="module"></script> </head> <body> <!--#include virtual="/include/header.html"--> <!--#include virtual="/include/linode_subnav.html"--> <div id="main-content" class="wrapper"> <div id="top-links"><a href="/linodes">Linodes</a> » <span id="linode-tag"><a id="linode-tag-link" href=""></a> » </span><a id="linode-label" href="/linodes/dashboard?lid=0"></a> » <span class="top-links-title">Backups</span></div> <div id="backups"> <p id="schedule-updated">Backup schedule updated.</p> <table class="lmc-table"> <thead> <tr> <td colspan="2">Backup Settings</td> </tr> <tr> <td colspan="2">Schedule</td> </tr> </thead> <tbody> <tr class="lmc-tr3"> <td>Backup Window (<span id="timezone"></span>)</td> <td> <select id="backup-window"> <option selected disabled value="Scheduling">Choose a time</option> <option class="window" value="W0">00:00 - 02:00</option> <option class="window" value="W2">02:00 - 04:00</option> <option class="window" value="W4">04:00 - 06:00</option> <option class="window" value="W6">06:00 - 08:00</option> <option class="window" value="W8">08:00 - 10:00</option> <option class="window" value="W10">10:00 - 12:00</option> <option class="window" value="W12">12:00 - 14:00</option> <option class="window" value="W14">14:00 - 16:00</option> <option class="window" value="W16">16:00 - 18:00</option> <option class="window" value="W18">18:00 - 20:00</option> <option class="window" value="W20">20:00 - 22:00</option> <option class="window" value="W22">22:00 - 00:00</option> </select> </td> </tr> <tr class="lmc-tr3"> <td>Weekly Backup</td> <td> <select id="backup-day"> <option selected disabled value="Scheduling">Choose a day</option> <option value="Sunday">Sunday</option> <option value="Monday">Monday</option> <option value="Tuesday">Tuesday</option> <option value="Wednesday">Wednesday</option> <option value="Thursday">Thursday</option> <option value="Friday">Friday</option> <option value="Saturday">Saturday</option> </select> </td> </tr> <tr class="lmc-tr3"> <td></td> <td><button disabled id="save-button" type="button">Save Changes</button></td> </tr> </tbody> <tbody class="lmc-tbody-head"> <tr class="noshow"> <td colspan="2"></td> </tr> <tr> <td colspan="2">Manual Snapshot</td> </tr> </tbody> <tbody> <tr class="lmc-tr3"> <td></td> <td> <span id="in-progress">— Snapshot In Progress —<br /></span> <input id="snapshot-label" type="text" placeholder="My New Snapshot Label" minlength="1" maxlength="255" size="32" /> <button disabled id="snapshot-button" type="button">Take a New Snapshot Now</button> </td> </tr> </tbody> </table> <table class="lmc-table"> <thead> <tr> <td colspan="6">Available Backups</td> </tr> <tr> <td>Type</td> <td>Started</td> <td>Finished</td> <td>Duration</td> <td>Status</td> <td>Restore</td> </tr> </thead> <tbody id="backup-table"></tbody> </table> <p id="cancel-link"><a href="/linodes/backups_cancel?lid=0">Cancel Backups</a></p> </div> </div> </body> </html>