mirror of
https://forge.chapril.org/tykayn/caisse-bliss
synced 2025-06-20 01:44:42 +02:00
up to sf 7
This commit is contained in:
parent
a39b6239b0
commit
501795a8fa
16586 changed files with 19384005 additions and 0 deletions
|
@ -0,0 +1,5 @@
|
|||
{% extends "@FOSUser/layout.html.twig" %}
|
||||
|
||||
{% block fos_user_content %}
|
||||
TODO changer le pass
|
||||
{% endblock fos_user_content %}
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
formulaire de changement de pass
|
|
@ -0,0 +1,6 @@
|
|||
{% extends "@FOSUser/layout.html.twig" %}
|
||||
|
||||
|
||||
{% block fos_user_content %}
|
||||
<p>check mail</p>
|
||||
{% endblock fos_user_content %}
|
11
v1/old/app/Resources/FOSUserBundle/views/Registration/confirmed.html.twig
Executable file
11
v1/old/app/Resources/FOSUserBundle/views/Registration/confirmed.html.twig
Executable file
|
@ -0,0 +1,11 @@
|
|||
{% extends "@FOSUser/layout.html.twig" %}
|
||||
|
||||
|
||||
{% block fos_user_content %}
|
||||
<p>enregistrement confirmé</p>
|
||||
{% if targetUrl %}
|
||||
<p>
|
||||
retour enregistrement
|
||||
</p>
|
||||
{% endif %}
|
||||
{% endblock fos_user_content %}
|
12
v1/old/app/Resources/FOSUserBundle/views/Registration/email.txt.twig
Executable file
12
v1/old/app/Resources/FOSUserBundle/views/Registration/email.txt.twig
Executable file
|
@ -0,0 +1,12 @@
|
|||
{% block subject %}
|
||||
{%- autoescape false -%}
|
||||
{{ 'registration.email.subject'|trans({'%username%': user.username, '%confirmationUrl%': confirmationUrl}) }}
|
||||
{%- endautoescape -%}
|
||||
{% endblock %}
|
||||
|
||||
{% block body_text %}
|
||||
{% autoescape false %}
|
||||
{{ 'registration.email.message'|trans({'%username%': user.username, '%confirmationUrl%': confirmationUrl}) }}
|
||||
{% endautoescape %}
|
||||
{% endblock %}
|
||||
{% block body_html %}{% endblock %}
|
22
v1/old/app/Resources/FOSUserBundle/views/Registration/register.html.twig
Executable file
22
v1/old/app/Resources/FOSUserBundle/views/Registration/register.html.twig
Executable file
|
@ -0,0 +1,22 @@
|
|||
{% extends "@FOSUser/layout.html.twig" %}
|
||||
|
||||
{% block fos_user_content %}
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xs-6">
|
||||
<h1>Enregistrer un nouveau compte</h1>
|
||||
TODO
|
||||
</div>
|
||||
<div class="col-xs-6">
|
||||
|
||||
ou bien,
|
||||
|
||||
{#<a class="btn btn-info" href="{{ path('fos_user_security_login') }}">se connecter.</a>#}
|
||||
<a class="btn btn-info" href="#">
|
||||
Mot de passe oublié?
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
{% endblock fos_user_content %}
|
|
@ -0,0 +1,4 @@
|
|||
|
||||
enregistrer un compte
|
||||
<br>
|
||||
envoyer
|
14
v1/old/app/Resources/FOSUserBundle/views/Resetting/request.html.twig
Executable file
14
v1/old/app/Resources/FOSUserBundle/views/Resetting/request.html.twig
Executable file
|
@ -0,0 +1,14 @@
|
|||
{% extends "@FOSUser/layout.html.twig" %}
|
||||
{% block fos_user_content %}
|
||||
<div class="row">
|
||||
<div class="col-xs-6">
|
||||
<h1>Mot de passe oublié</h1>
|
||||
reset TODO
|
||||
</div>
|
||||
<div class="col-xs-6">
|
||||
ou bien,
|
||||
{#<a class="btn btn-info" href="{{ path('fos_user_security_login') }}">se connecter.</a>#}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{% endblock fos_user_content %}
|
73
v1/old/app/Resources/FOSUserBundle/views/Security/login.html.twig
Executable file
73
v1/old/app/Resources/FOSUserBundle/views/Security/login.html.twig
Executable file
|
@ -0,0 +1,73 @@
|
|||
{% extends "@FOSUser/layout.html.twig" %}
|
||||
{% block fos_user_content %}
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-sm-6">
|
||||
<div class="padded">
|
||||
|
||||
<h1>
|
||||
<i class="fa fa-key"></i>
|
||||
Se connecter
|
||||
</h1>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-xs-12 col-sm-6">
|
||||
<div class="visible-xs">
|
||||
<hr>
|
||||
</div>
|
||||
<div class="padded">
|
||||
<p>
|
||||
<a class="btn btn-info btn-block" href="#">
|
||||
Créer un compte
|
||||
</a>
|
||||
<a class="btn btn-warning btn-block" href="#">
|
||||
Mot de passe oublié?
|
||||
</a>
|
||||
<a href="#" id="demo_login_btn" class="btn btn-block btn-primary">
|
||||
<i class="fa fa-arrow-circle-right"></i>
|
||||
Se connecter à la démo</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="row">
|
||||
<div class="col-xs-12">
|
||||
<div class="padded">
|
||||
|
||||
{% if error %}
|
||||
<div class="alert alert-info">{{ error.messageKey|trans(error.messageData, 'security') }}</div>
|
||||
{% endif %}
|
||||
|
||||
<form action="#" method="post">
|
||||
{% if csrf_token %}
|
||||
<input type="hidden" name="_csrf_token" value="{{ csrf_token }}"/>
|
||||
{% endif %}
|
||||
<div>
|
||||
|
||||
<label for="username">{{ 'security.login.username'|trans }}</label>
|
||||
<input type="text" id="username" class="input-lg" name="_username" value="{{ last_username }}"
|
||||
required="required"
|
||||
autocomplete="username"/>
|
||||
</div>
|
||||
<div>
|
||||
|
||||
<label for="password">{{ 'security.login.password'|trans }}</label>
|
||||
<input type="password" id="password" class="input-lg" name="_password" required="required"
|
||||
autocomplete="current-password"/>
|
||||
|
||||
</div>
|
||||
<div class="padded-v">
|
||||
<input type="checkbox" id="remember_me" name="_remember_me" value="on"/>
|
||||
<label for="remember_me">{{ 'security.login.remember_me'|trans }}</label>
|
||||
</div>
|
||||
|
||||
<input class="btn btn-success btn-block btn-lg" type="submit" id="_submit" name="_submit"
|
||||
value="{{ 'security.login.submit'|trans }}"/>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
{% endblock %}
|
22
v1/old/app/Resources/FOSUserBundle/views/Security/login_content.html.twig
Executable file
22
v1/old/app/Resources/FOSUserBundle/views/Security/login_content.html.twig
Executable file
|
@ -0,0 +1,22 @@
|
|||
{% if error %}
|
||||
<div>{{ error.messageKey|trans(error.messageData, 'security') }}</div>
|
||||
{% endif %}
|
||||
|
||||
<form action="#" method="post">
|
||||
{% if csrf_token %}
|
||||
<input type="hidden" name="_csrf_token" value="{{ csrf_token }}"/>
|
||||
{% endif %}
|
||||
|
||||
<label for="username">{{ 'security.login.username'|trans }}</label>
|
||||
<input type="text" id="username" name="_username" value="{{ last_username }}" required="required"
|
||||
autocomplete="username"/>
|
||||
|
||||
<label for="password">{{ 'security.login.password'|trans }}</label>
|
||||
<input type="password" id="password" name="_password" required="required" autocomplete="current-password"/>
|
||||
<br>
|
||||
<input type="checkbox" id="remember_me" name="_remember_me" value="on"/>
|
||||
<label for="remember_me">{{ 'security.login.remember_me'|trans }}</label>
|
||||
<br>
|
||||
<input class="btn btn-primary btn-block" type="submit" id="_submit" name="_submit"
|
||||
value="{{ 'security.login.submit'|trans }}"/>
|
||||
</form>
|
19
v1/old/app/Resources/FOSUserBundle/views/layout.html.twig
Executable file
19
v1/old/app/Resources/FOSUserBundle/views/layout.html.twig
Executable file
|
@ -0,0 +1,19 @@
|
|||
{% extends 'base.html.twig' %}
|
||||
{% block title %}Caisse{% endblock %}
|
||||
|
||||
{% block bigMain %}
|
||||
{% include 'default/header.html.twig' %}
|
||||
<section class="bg-girl padded login-fosub">
|
||||
<div class="container">
|
||||
<div class="row justify-content-md-center align-items-center">
|
||||
<div class="col-md-auto">
|
||||
<fieldset class="bg-shader pull-left form-group padded">
|
||||
{% block fos_user_content %}{% endblock %}
|
||||
</fieldset>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
{% include 'default/footer.html.twig' %}
|
||||
{% endblock %}
|
Loading…
Add table
Add a link
Reference in a new issue