This repository has been archived on 2025-09-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Employee-Management-Portal/templates/inputhours.html
2020-11-11 00:46:00 +01:00

24 lines
585 B
HTML

{% extends "base.html" %}
{% block content %}
<div class="container">
<div class="row">
{% if user.is_authenticated %}
Zalogowany: {{ user.username }} &nbsp;
<p><a href="{% url 'login' %}">Wyloguj</a></p> <br>
{% endif %}
</div>
<!-- form to input working hours-->
<div class="row">
<div class="form-hours">
<form method="post">
{% csrf_token %}
{{ form.as_p }}
<button class="btn btn-lg btn-success btn-block" type="submit">Dodaj</button>
</form>
</div>
</div>
</div>
{% endblock %}