77 lines
3.3 KiB
Twig
77 lines
3.3 KiB
Twig
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>{% block title %}Welcome!{% endblock %}</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
{% block stylesheets %}
|
|
{{ encore_entry_link_tags('app_backend') }}
|
|
{% endblock %}
|
|
|
|
{% block javascripts %}
|
|
{{ encore_entry_script_tags('app_backend') }}
|
|
{% endblock %}
|
|
|
|
</head>
|
|
|
|
{% block body %}
|
|
|
|
<body class="bg-gradient-primary">
|
|
|
|
<div class="container">
|
|
|
|
<!-- Outer Row -->
|
|
<div class="row justify-content-center mt-5">
|
|
|
|
<div class="col-xl-5 col-lg-12 col-md-8 mt-5">
|
|
|
|
<!-- Nested Row within Card Body -->
|
|
<div class="row">
|
|
|
|
<div class="card radius-10">
|
|
<div class="card-body p-4">
|
|
<div class="text-center">
|
|
<h1 class="h3 mb-0 text-gray-800">Connexion</h1>
|
|
<p>connexion a votre compte admin</p>
|
|
</div>
|
|
<form class="form-body row g-3">
|
|
<div class="col-12">
|
|
<label for="inputEmail" class="form-label">Email</label>
|
|
<input type="email" class="form-control" id="inputEmail">
|
|
</div>
|
|
<div class="col-12">
|
|
<label for="inputPassword" class="form-label">Mot de passe</label>
|
|
<input type="password" class="form-control" id="inputPassword">
|
|
</div>
|
|
<div class="col-12 col-lg-6">
|
|
<div class="form-check form-switch">
|
|
<input class="form-check-input" type="checkbox" role="switch" id="flexSwitchCheckRemember">
|
|
<label class="form-check-label" for="flexSwitchCheckRemember">Rester connecté</label>
|
|
</div>
|
|
</div>
|
|
<div class="col-12 col-lg-6 text-end">
|
|
<a href="authentication-reset-password-simple.html">mot de passe oublié ?</a>
|
|
</div>
|
|
<div class="col-12 col-lg-12">
|
|
<div class="d-grid">
|
|
<button type="button" class="btn btn-primary">connexion</button>
|
|
</div>
|
|
</div>
|
|
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
{% endblock %}
|
|
<script src="{{ asset('assets/js/bootstrap.bundle.min.js.js') }}" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
|
|
</html>
|