File size: 1,449 Bytes
6f0913d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Processing File</title>
  <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
  <style>

    body {

      background-color: #1c1c1e;

      font-family: 'Poppins', sans-serif;

      color: #f5f5f7;

      display: flex;

      justify-content: center;

      align-items: center;

      height: 100vh;

      margin: 0;

    }

    .loader {

      position: relative;

      width: 80px;

      height: 80px;

    }

    .loader div {

      position: absolute;

      width: 100%;

      height: 100%;

      border: 3px solid #fff;

      border-radius: 50%;

      border-top-color: transparent;

      animation: spin 1s linear infinite;

    }

    .loader div:nth-child(2) {

      animation-delay: -0.5s;

    }

    @keyframes spin {

      0% { transform: rotate(0deg); }

      100% { transform: rotate(360deg); }

    }

    h3 {

      color: #f5f5f7;

      margin-top: 20px;

      font-size: 1.5rem;

    }

  </style>
</head>
<body>
  <div class="text-center">
    <div class="loader">
      <div></div>
      <div></div>
    </div>
    <h3>Processing your file...</h3>
  </div>
  <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>