summaryrefslogtreecommitdiffstats
path: root/api/WhatApi/Templates/web_login.liquid
blob: e9e545dd38d6d05b4f90c2be62734b286549e6fc (plain) (blame)
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
<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport"
          content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
    <meta http-equiv="X-UA-Compatible"
          content="ie=edge">
    <style>
        form {
            margin: 12px 10px;
            display: grid;
            grid-template-columns: 1fr;
            grid-template-rows: 1fr 1fr;
            max-width: 420px;
            width: 100%;
            grid-row-gap: 6px;
        }
    </style>
    <title>Login</title>
</head>
<body>
<form action="" method="post" accept-charset="utf-8" autocomplete="off">
    <label for="username">username
        <input type="text"
               name="username"
               required>
    </label>
    <label for="password">password
        <input type="password"
               name="password"
               required>
    </label>
    <input type="submit" value="Login" style="width: 50px;">
</form>
</body>
</html>