mirror of
https://github.com/azlux/botamusique
synced 2024-11-23 22:06:09 +00:00
42 lines
1.4 KiB
HTML
42 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<meta charset="UTF-8">
|
|
|
|
<title>{{ tr('page_title') }}</title>
|
|
|
|
<link rel="icon" href="static/image/favicon.ico" />
|
|
|
|
<link rel="stylesheet" href="static/css/main.css">
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container" style="max-width: 800px">
|
|
<div class="col-8" style="margin: auto; padding-top: 50px;">
|
|
<div class="card">
|
|
<div class="card-header">
|
|
{{ tr('token_required') }}
|
|
</div>
|
|
<div class="card-body">
|
|
<h3>{{ tr('token_required') }}</h3>
|
|
{{ tr('token_required_message') }}
|
|
<form action="." method="get">
|
|
<div class="form-group mt-3">
|
|
<label for="token_input">{{ tr('token') }}</label>
|
|
<div class="input-group">
|
|
<input type="password" class="form-control btn-space" id="token_input" name="token" placeholder="xxxxxxx">
|
|
<button type="submit" class="btn btn-primary">{{ tr('submit') }}</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="static/js/main.js"></script>
|
|
</body>
|
|
|
|
</html>
|