mirror of
https://github.com/jkaninda/mysql-bkup.git
synced 2025-12-06 13:39:41 +01:00
70 lines
2.1 KiB
Cheetah
70 lines
2.1 KiB
Cheetah
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>✅ Database Backup Successful – {{.Database}}</title>
|
||
<style>
|
||
body {
|
||
font-family: Arial, sans-serif;
|
||
background-color: #f8f9fa;
|
||
color: #333;
|
||
margin: 0;
|
||
padding: 20px;
|
||
}
|
||
h2 {
|
||
color: #5cb85c;
|
||
}
|
||
.details {
|
||
background-color: #ffffff;
|
||
border: 1px solid #ddd;
|
||
padding: 15px;
|
||
border-radius: 5px;
|
||
margin-top: 10px;
|
||
}
|
||
.details ul {
|
||
list-style-type: none;
|
||
padding: 0;
|
||
}
|
||
.details li {
|
||
margin: 5px 0;
|
||
}
|
||
a {
|
||
color: #0275d8;
|
||
text-decoration: none;
|
||
}
|
||
a:hover {
|
||
text-decoration: underline;
|
||
}
|
||
footer {
|
||
margin-top: 20px;
|
||
font-size: 0.9em;
|
||
color: #6c757d;
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<h2>✅ Database Backup Successful</h2>
|
||
<p>Hi,</p>
|
||
<p>The backup process for the <strong>{{.Database}}</strong> database was successfully completed. Please find the details below:</p>
|
||
|
||
<div class="details">
|
||
<h3>Backup Details:</h3>
|
||
<ul>
|
||
<li><strong>Database Name:</strong> {{.Database}}</li>
|
||
<li><strong>Backup Duration:</strong> {{.Duration}}</li>
|
||
<li><strong>Backup Storage:</strong> {{.Storage}}</li>
|
||
<li><strong>Backup Location:</strong> {{.BackupLocation}}</li>
|
||
<li><strong>Backup Size:</strong> {{.BackupSize}}</li>
|
||
<li><strong>Backup Reference:</strong> {{.BackupReference}}</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<p>You can access the backup at the specified location if needed. Thank you for using <a href="https://jkaninda.github.io/mysql-bkup/">mysql-bkup</a>.</p>
|
||
|
||
<footer>
|
||
© 2024 <a href="https://github.com/jkaninda/mysql-bkup">mysql-bkup</a> | Automated Backup System
|
||
</footer>
|
||
</body>
|
||
</html>
|