third
This commit is contained in:
@ -10,6 +10,7 @@
|
||||
<li><a href="{{ path('admin_app_patient_index') }}">Donneur</a></li>
|
||||
<li><a href="{{ path('admin_app_tube_index') }}">Tube</a></li>
|
||||
<li><a href="{{ path('admin_app_dmu_cat_index') }}">Categorie DMU</a></li>
|
||||
<li><a href="{{ path('admin_app_user_index') }}">User</a></li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
@ -16,13 +16,31 @@
|
||||
</head>
|
||||
<body>
|
||||
<form action="">
|
||||
<input type="text" style="visibility:visible" id="saisie">
|
||||
<input type="text" id="saisie">
|
||||
</form>
|
||||
<div class="container">
|
||||
<div class="wrapper">
|
||||
|
||||
<div class="container">
|
||||
<div class="info">
|
||||
<div id="info-don">
|
||||
<h2>numéro de don</h2>
|
||||
<span id="don"></span>
|
||||
</div>
|
||||
<div id="info-donneur">
|
||||
<span id="nom"></span>
|
||||
<span id="prenom"></span>
|
||||
<span id="naissance"></span>
|
||||
</div>
|
||||
<div id="info-psl">
|
||||
<span id="typeDon"></span>
|
||||
<span id="typePoche"></span>
|
||||
<span id="nbreTube"></span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container">
|
||||
<div class="wrapper">
|
||||
<div id="error"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{{ encore_entry_script_tags('app') }}
|
||||
</body>
|
||||
</html>
|
20
templates/front/session.html.twig
Normal file
20
templates/front/session.html.twig
Normal file
@ -0,0 +1,20 @@
|
||||
<!doctype html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport"
|
||||
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
||||
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||||
<title>{% block title %}Administration{% endblock %}</title>
|
||||
<meta name="robots" content="noindex, nofollow">
|
||||
<link rel="shortcut icon" type="image/png" href="{{ asset('favicon/favicon.ico') }}"/>
|
||||
|
||||
{{ encore_entry_link_tags('adminStyle') }}
|
||||
{% block stylesheets %}
|
||||
|
||||
{% endblock %}
|
||||
</head>
|
||||
<body>
|
||||
<h1>{{session}}</h1>
|
||||
</body>
|
||||
</html>
|
21
templates/front/test.html.twig
Normal file
21
templates/front/test.html.twig
Normal file
@ -0,0 +1,21 @@
|
||||
<!doctype html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport"
|
||||
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
||||
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||||
<title>{% block title %}Administration{% endblock %}</title>
|
||||
<meta name="robots" content="noindex, nofollow">
|
||||
<link rel="shortcut icon" type="image/png" href="{{ asset('favicon/favicon.ico') }}"/>
|
||||
|
||||
{{ encore_entry_link_tags('adminStyle') }}
|
||||
{% block stylesheets %}
|
||||
|
||||
{% endblock %}
|
||||
</head>
|
||||
<body>
|
||||
|
||||
{{ encore_entry_script_tags('app') }}
|
||||
</body>
|
||||
</html>
|
35
templates/security/login.html.twig
Normal file
35
templates/security/login.html.twig
Normal file
@ -0,0 +1,35 @@
|
||||
{% extends 'base.html.twig' %}
|
||||
|
||||
{% block title %}Log in!{% endblock %}
|
||||
|
||||
{% block body %}
|
||||
<div class="login-wrapper">
|
||||
<div class="login">
|
||||
<form method="post">
|
||||
{% if error %}
|
||||
<div class="alert alert-danger">{{ error.messageKey|trans(error.messageData, 'security') }}</div>
|
||||
{% endif %}
|
||||
|
||||
<h1 class="h3 mb-3 font-weight-normal">Please sign in</h1>
|
||||
<label for="inputEmail">Email</label>
|
||||
<input type="email" value="{{ last_username }}" name="email" id="inputEmail" class="form-control" required autofocus>
|
||||
<label for="inputPassword">Password</label>
|
||||
<input type="password" name="password" id="inputPassword" class="form-control" required>
|
||||
|
||||
<input type="hidden" name="_csrf_token"
|
||||
value="{{ csrf_token('authenticate') }}"
|
||||
>
|
||||
{# <div class="checkbox mb-3">#}
|
||||
{# <label>#}
|
||||
{# <input type="checkbox" name="_remember_me"> Remember me#}
|
||||
{# </label>#}
|
||||
{# </div>#}
|
||||
|
||||
<button class="btn btn-lg btn-primary" type="submit">
|
||||
Sign in
|
||||
</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{% endblock %}
|
Reference in New Issue
Block a user