mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-07-01 22:46:13 +00:00
Layout the login form fix #345
This is a very simple layout, but it should do the job until we have better :-)
This commit is contained in:
parent
9951593dc0
commit
68a3ed70f1
@ -1,19 +1,44 @@
|
||||
{% extends "::base.html.twig" %}
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
|
||||
{% block title %}ChillMainBundle:Login:login{% endblock %}
|
||||
<title>{{ 'Login to %installation_name%' | trans({ '%installation_name%' : installation.name } ) }}</title>
|
||||
<style>
|
||||
label {
|
||||
width : 15em;
|
||||
text-align: right;
|
||||
display: inline-block;
|
||||
}
|
||||
input {
|
||||
|
||||
{% block body %}
|
||||
<h1>Welcome to the Login:login page</h1>
|
||||
}
|
||||
form {
|
||||
|
||||
<p>{{ error }}</p>
|
||||
}
|
||||
button {
|
||||
margin-left: 15em;
|
||||
margin-top: 1em;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1>{{ 'Welcome to %installation_name%' | trans({ '%installation_name%' : installation.name } ) }}</h1>
|
||||
|
||||
<form method="POST" action="{{ path('login_check') }}">
|
||||
<input type="text" name="_username" value="{{ last_username }}" />
|
||||
<input type="password" name="_password" />
|
||||
<input type="hidden" name="_csrf_token" value="{{ csrf_token('authenticate') }}" />
|
||||
<p>{{ error|trans }}</p>
|
||||
|
||||
<button type="submit">{{ 'Login'|trans }}</button>
|
||||
<form method="POST" action="{{ path('login_check') }}">
|
||||
<label for="_username">{{ 'Username'|trans }}</label>
|
||||
<input type="text" name="_username" value="{{ last_username }}" />
|
||||
<br/>
|
||||
<label for="_password">{{ 'Password'|trans }}</label>
|
||||
<input type="password" name="_password" />
|
||||
<input type="hidden" name="_csrf_token" value="{{ csrf_token('authenticate') }}" />
|
||||
<br/>
|
||||
<button type="submit">{{ 'Login'|trans }}</button>
|
||||
|
||||
</form>
|
||||
</form>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
||||
{% endblock %}
|
||||
|
Loading…
x
Reference in New Issue
Block a user