| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 | <!DOCTYPE html><html lang="en" ><head>    <meta charset="UTF-8">    <meta name="viewport" content="width=device-width, initial-scale=1.0">    <meta http-equiv="X-UA-Compatible" content="ie=edge, Chrome=1">    <meta http-equiv="Cache-Control" content="no-cache">    <title>驗證信箱</title>    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css">    <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp"        crossorigin="anonymous">    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">    <script src="https://unpkg.com/axios/dist/axios.min.js"></script>    <style>    .h2 {        text-align: center;        font-size: 2rem;        font-weight: 500;        margin-top: 2rem;    }    .imgfr {      width: 70%;      max-width: 800px;      min-width: 300px;    }    .imgfr img {      width: 100%;    }    .pl-0 {        padding-left: 0;    }    .link {      text-decoration: none;    }    </style></head><body>    <div class="container">      <main>        <div class="m-auto text-center">          <h2 class="h2"><img src="../html/static/img/checked (2).png" width="36" class="me-2">驗證成功</h2>          <p>立即導頁至<a href="./login.html" class="link">登入頁</a>,以繼續使用服務</p>          <div><img src="../html/static/img/Spinner-1s-181px.gif" width="36" alt=""></div>          <div class="imgfr mx-auto">            <img src="../html/static/img/undraw_well_done_i2wr.png" alt="">          </div>                  </div>      </main>            </div>    <script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>    <script src='https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js'></script>    <script>          </script></body></html>
 |