1234567891011121314151617181920212223242526272829303132333435363738 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8"/>
- <link rel="icon" href="/assets/logo.png">
- <link href="https://fonts.googleapis.com/css?family=Titillium+Web&display=swap" rel="stylesheet">
- <link type="text/css" href="/css/index.css" rel="stylesheet">
- <link type="text/css" href="/css/styles.css" rel="stylesheet">
- <link type="text/css" href="/css/controls.css" rel="stylesheet">
- <script src="/js/jquery-3.4.1.min.js"></script>
- <title>Gostfix mail {{.Version}}</title>
- </head>
- <body>
- <div id="main">
- <div class="horizontalPaddingBox" >
- <div style="display: flex; flex-direction: column; width: 100%; height: 100%; justify-content: center;">
- <form method="POST" action="/login" style="margin: 0 auto;">
- <div class="inpt">
- <input name="user" type="text" required autocomplete="off">
- <span class="highlight"></span>
- <span class="bar"></span>
- <label>Email</label>
- </div>
- <div class="inpt">
- <input name="password" type="password" required autocomplete="off">
- <span class="highlight"></span>
- <span class="bar"></span>
- <label>Password</label>
- </div>
- <input type="submit" style="visibility: hidden;" />
- </form>
- {{.Signup}}
- </div>
- </div>
- <div id="copyrightBox" class="elidedText"><img src="/assets/logo.svg" height="30px"/>gostfix {{.Version}} Web interface. Copyright (c) 2020 Alexey Edelev <semlanik@gmail.com></div>
- </div>
- </body>
- </html>
|