52 lines
2.5 KiB
HTML
52 lines
2.5 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title></title>
|
||
|
<!-- Latest compiled and minified CSS -->
|
||
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
|
||
|
|
||
|
<!-- Optional theme -->
|
||
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css">
|
||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
|
||
|
<!-- Latest compiled and minified JavaScript -->
|
||
|
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
|
||
|
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="container centered">
|
||
|
<div class="row">
|
||
|
<div class="col-md-4">
|
||
|
<img class="padded" src="{{ url_for('static', filename='burned.png')}}">
|
||
|
</div>
|
||
|
<form id="submissionform" role="form" class="col-md-8 form-group" method="POST" action="">
|
||
|
<div class="input-group">
|
||
|
{{ form.csrf_token }}
|
||
|
{{ form.api_key(**{'class':'form-control','placeholder':'Insert API Key'}) }}
|
||
|
<span class="input-group-btn">
|
||
|
<button id="submitbutton" class="btn btn-default" type="submit">Go!</button>
|
||
|
</span>
|
||
|
</div>
|
||
|
</form>
|
||
|
<div class="col-md-8">
|
||
|
{% for error in form.api_key.errors %}
|
||
|
<div class="alert alert-warning alert-dismissible" role="alert">
|
||
|
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span></button>
|
||
|
{{ error }}
|
||
|
</div>
|
||
|
{% endfor %}
|
||
|
{% with messages = get_flashed_messages(with_categories=true) %}
|
||
|
{% if messages %}
|
||
|
{% for category, message in messages %}
|
||
|
<div class="alert alert-warning alert-dismissible" role="alert">
|
||
|
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span></button>
|
||
|
<strong>{{ category }}</strong>{{ message }}
|
||
|
</div>
|
||
|
{% endfor %}
|
||
|
{% endif %}
|
||
|
{% endwith %}
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|