forked from Tank/braga
50 lines
2.1 KiB
HTML
50 lines
2.1 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Вход в PROXY ADMIN</title>
|
|
<link rel="stylesheet" href="/public/css/font-awesome.min.css">
|
|
<link href="https://fonts.googleapis.com/css?family=Questrial&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="/public/css/bulma-dracula.css" />
|
|
</head>
|
|
|
|
<body style="background-image:url('/public/img/carbon.png');background-repeat: repeat;">
|
|
<section class="hero is-white-ter is-fullheight">
|
|
<div class="hero-body">
|
|
<div class="container has-text-centered">
|
|
<div class="column is-4 is-offset-4">
|
|
<div class="box has-background-dark">
|
|
<figure>
|
|
<img src="/public/img/proxy_small.png">
|
|
</figure>
|
|
<form method="POST">
|
|
<div class="field">
|
|
<div class="control">
|
|
<input class="input is-large" placeholder="Логин" name="login" autofocus="">
|
|
</div>
|
|
</div>
|
|
|
|
<div class="field">
|
|
<div class="control">
|
|
<input class="input is-large" type="password" name="password" placeholder="Пароль">
|
|
</div>
|
|
</div>
|
|
<button type="submit" name="submit" class="button is-block is-danger is-large is-fullwidth">Войти</button>
|
|
</form>
|
|
</div>
|
|
<p class="has-text-danger">
|
|
{{message}}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<script async type="text/javascript" src="/public/js/bulma.js"></script>
|
|
</body>
|
|
|
|
</html>
|