<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
     <link rel="stylesheet" href="/css/main.css">
    <link href="https://fonts.googleapis.com/css2?family=Lato&display=swap" rel="stylesheet">
    <link href="https://fonts.googleapis.com/icon?family=Material+Icons"
      rel="stylesheet">
    <title>{{title}}</title>
</head>
<style>
    body{
        background-color: black;
    }
    .login-container{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        background-color: #FFFFFF;
        position: fixed;
        top: 0;
        left: 0;
    }
    .login-logo{
        width: 50%;
        height: 50%;
    }

</style>
<body>
    <div class="login-container">
        <img class="login-logo" src="/imgs/skyou.svg" alt="background">
    </div>
    {{{body}}}
</body>
</html>