2019-10-02 18:34:08 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
|
|
<head>
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="viewport" content="width=device-width" />
|
|
|
|
<title>
|
|
|
|
Users - MISP
|
|
|
|
</title>
|
|
|
|
|
|
|
|
<!-- Bootstrap Core JavaScript -->
|
|
|
|
<script src="{{ url_for('static', filename='js/bootstrap.js') }}"></script>
|
|
|
|
<script src="{{ url_for('static', filename='js/bootstrap3-typeahead.min.js') }}"></script>
|
|
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/font-awesome.min.css') }}" rel="text/css">
|
|
|
|
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="flashContainer" style="padding-top:50px; !important;">
|
|
|
|
<div id="main-view-container" class="container-fluid ">
|
2019-10-02 23:14:22 +02:00
|
|
|
</div>
|
2019-10-02 18:34:08 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<div style="width:100%;">
|
|
|
|
<table style="margin-left:auto;margin-right:auto;">
|
|
|
|
<tr>
|
2019-10-02 23:14:22 +02:00
|
|
|
<td style="text-align:right;width:250px;padding-right:50px"></td>
|
2019-10-02 18:34:08 +02:00
|
|
|
<td style="width:460px">
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<img src="{{ url_for('static', filename='/pics/misp-logo.png') }}" style="display:block; margin-left: auto; margin-right: auto;"/>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<form action="" id="UserLoginForm" method="post" accept-charset="utf-8">
|
2019-10-02 23:14:22 +02:00
|
|
|
<br><legend>Welcome to MISP-Dashboard</legend><br>
|
2019-10-02 18:34:08 +02:00
|
|
|
<div class="input email required">
|
|
|
|
{{ form.username.label }}<br>
|
2019-10-02 23:14:22 +02:00
|
|
|
{{ form.username(size=32, maxlength=255) }}
|
2019-10-02 18:34:08 +02:00
|
|
|
</div>
|
|
|
|
<div class="input password required">
|
|
|
|
{{ form.password.label }}<br>
|
2019-10-02 23:14:22 +02:00
|
|
|
{{ form.password(size=32, maxlength=255) }}
|
2019-10-02 18:34:08 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="clear"></div>
|
|
|
|
<p>{{ form.submit() }}</p>
|
2019-10-02 23:14:22 +02:00
|
|
|
</form>
|
2019-10-02 18:34:08 +02:00
|
|
|
|
|
|
|
</td>
|
2019-10-02 23:14:22 +02:00
|
|
|
<td style="width:250px;padding-left:50px"></td>
|
2019-10-02 18:34:08 +02:00
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|