-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmigration.html
47 lines (39 loc) · 897 Bytes
/
migration.html
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Jackal Providers Migration</title>
<script src="migration.js"></script>
<style>
* {
font-family: arial, sans-serif;
}
table {
border-collapse: collapse;
width: 100%;
}
td, th {
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
}
tr:nth-child(even) {
background-color: #dddddd;
}
</style>
</head>
<body>
<h1>Jackal Storage Provider Migrations</h1>
<div>
<table id="providers">
<tr>
<th>Address</th>
<th>Domain</th>
<th>Current Files</th>
<th>Total Files</th>
<th>Migration</th>
</tr>
</table>
</div>
</body>
</html>