ibs/sql_app/templates/home.html
HeshamTB ede2b56b71
sql_app: basic front end. (login)
Signed-off-by: HeshamTB <hishaminv@gmail.com>
2022-06-09 17:03:07 +03:00

38 lines
829 B
HTML

{% extends "_base.html" %}
{% block content %}
<div class="starter-template">
<h1>IoT Building System</h1>
<hr><br>
<div>
<h3>Task</h3>
<p>Login</p>
<div class="login_form" role="group" aria-label="Basic example">
<form>
<input type="text" id="username_box" placeholder="Username">
<input type="password" id="password_box" placeholder="Password">
<input type="button"value="Login" class="btn btn-primary" onclick="handleLogInClick()">
</form>
</div>
</div>
<br><br>
<div>
<h3>Task Status</h3>
<br>
<table class="table">
<thead>
<tr>
<th>ID</th>
<th>Status</th>
<th>Result</th>
</tr>
</thead>
<tbody id="tasks">
</tbody>
</table>
</div>
</div>
{% endblock %}