You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
2.3 KiB
81 lines
2.3 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Insertion view</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: #f1f1f1;
|
|
}
|
|
|
|
.container {
|
|
max-width: 400px;
|
|
margin: 5px auto;
|
|
padding: 20px;
|
|
background-color: #fff;
|
|
border-radius: 5px;
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
h2 {
|
|
text-align: center;
|
|
}
|
|
|
|
.form-group {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
label {
|
|
display: block;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
{% for item in bad_fields %}
|
|
#{{ item }}{
|
|
border-color: red;
|
|
}{% endfor %} input[type="text"], input[type="password"] {
|
|
width: 100%;
|
|
padding: 10px;
|
|
border: 1px solid #ccc;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
input[type="submit"] {
|
|
background-color: #007bff;
|
|
color: #fff;
|
|
padding: 10px 20px;
|
|
border: none;
|
|
border-radius: 5px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
input[type="submit"]:hover {
|
|
background-color: #0056b3;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="container">
|
|
<h2>Modifier votre équipe</h2>
|
|
<form action="{{ path('/team/' ~ team.getInfo().getId() ~ '/edit') }}" method="post">
|
|
<div class="form-group">
|
|
<label for="name">Nom de l'équipe :</label>
|
|
<input type="text" id="name" name="name" value="{{ team.getInfo().getName() }}" required>
|
|
<label for="picture">Logo:</label>
|
|
<input type="text" id="picture" name="picture" value="{{ team.getInfo().getPicture() }}" required>
|
|
<label for="main_color">Couleur principale</label>
|
|
<input type="color" value="{{ team.getInfo().getMainColor() }}" id="main_color" name="main_color" required>
|
|
<label for="second_color">Couleur secondaire</label>
|
|
<input type="color" id="second_color" name="second_color" value="{{ team.getInfo().getSecondColor() }}" required>
|
|
</div>
|
|
<div class="form-group">
|
|
<input type="submit" value="Confirmer">
|
|
</div>
|
|
</form>
|
|
</div>
|
|
|
|
</body>
|
|
</html> |