ComptaClub/src/templates/login.html

107 lines
5.1 KiB
HTML

{% load static %}
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<link rel="stylesheet" href="{% static "css/normalize_v801.css" %}" media="all" />
<link rel="stylesheet" href="{% static "css/bootstrap.min.css" %}" media="all" />
<!-- JQuery UI CSS -->
<link href="{% static "js/jqueryui/jquery-ui.theme.min.css" %}" rel="stylesheet" />
<link href="{% static "js/jqueryui/jquery-ui.min.css" %}" rel="stylesheet" />
<link rel="stylesheet" href="{% static "css/app_screen.css" %}" media="all" />
<link rel="stylesheet" href="{% static "css/app_printer.css" %}" media="print" />
{% block extra_head %}{% endblock %}
<title>{% block page_title %}Comptabilité{% endblock %}</title>
</head>
<body>
<div id="page" class=" sidebar_right">
<div class="container">
<div id="frame2">
<div id="content">
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<h1>{{ transaction.description }}</h1>
</div>
<br />
<div class="col-xs-12 col-sm-12 col-md-8 col-lg-6 col-md-offset-2 col-lg-offset-3">
<div class="well well-small text-right">
<form class="form-horizontal" action="/login/" method="post" if="formulaire">
{% csrf_token %}
<div class="form-group">
<label for="login" class="col-lg-4 control-label">Login</label>
<div class="col-lg-8">
<input type="login" name="login" class="form-control" id="login" placeholder="Login">
</div>
</div>
<div class="form-group">
<label for="login" class="col-lg-4 control-label">Password</label>
<div class="col-lg-8">
<input type="password" name="password" class="form-control" id="password" placeholder="Password">
</div>
</div>
{% if message %}
<p class="text-danger"><b>{{message}}</b></p>
{% endif %}
<div class="form-group">
<div class="col-lg-6 col-lg-offset-3">
<button type="submit" class="btn btn-primary btn-block mb-3">Log me in</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="{% static "js/jquery-2.1.4.min.js" %}"></script>
<script src="{% static "js/bootstrap.min.js" %}"></script>
<script src="{% static "js/highcharts/highcharts.js" %}"></script>
<script src="{% static "js/highcharts/exporting.js" %}"></script>
<script src="{% static "js/highcharts/dark-unica.js" %}"></script>
<!-- <script src="{% static "js/tablesort.js" %}"></script> -->
<!-- <link href="{% static "css/theme.default.min.css" %}" rel="stylesheet"> -->
<script src="{% static "js/jquery.tablesorter.js" %}"></script>
<script src="{% static "js/jquery.tablesorter.widgets.js" %}"></script>
<script src="{% static "js/jqueryui/jquery-ui.min.js" %}"></script>
{% block extra_script %}{% endblock %}
<script type="text/javascript">
$(document).ready(function() {
Highcharts.setOptions({
lang: {
months: ['Janvier', 'Février', 'Mars', 'Avril', 'Mai', 'Juin', 'Juillet', 'Août', 'Septembre', 'Octobre', 'Novembre', 'Décembre'],
shortMonths: [ "Jan" , "Feb" , "Mar" , "Apr" , "May" , "Jun" , "Jul" , "Aug" , "Sep" , "Oct" , "Nov" , "Dec"],
weekdays: ['Dimanche', 'Lundi', 'Mardi', 'Mercredi', 'Jeudi', 'Vendredi', 'Samedi'],
decimalPoint: ",",
thousandsSep: ".",
downloadJPEG: "Telecharger en JPEG",
downloadPDF: "Telecharger en PDF",
downloadPNG: "Telecharger en PNG",
downloadSVG: "Telecharger en SVG",
printChart: "Imprimer",
resetZoom: "Rétablir",
resetZoomTitle: "Rétablir",
loading: "Chargement…",
noData: "Pas de données disponibles."
}
});
});
</script>
<section id="main" class="container">{% block content %}{% endblock %}</section>
<footer>
<div class="footer-content"></div>
</footer>
</body>
</html>