-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmes_collaborations.html
More file actions
191 lines (169 loc) · 4.34 KB
/
mes_collaborations.html
File metadata and controls
191 lines (169 loc) · 4.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Profil Partenaire - Futurix</title>
<style>
body {
margin: 0;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
font-family: Arial, sans-serif;
color: #e0e0e0;
background:
radial-gradient(800px 400px at 10% 20%, rgba(0,242,160,0.06), transparent 10%),
radial-gradient(700px 350px at 90% 80%, rgba(0,178,120,0.035), transparent 12%),
linear-gradient(180deg,#071017,#04121a);
}
.container {
width: 90%;
max-width: 900px;
border-radius: 20px;
background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
border: 1px solid rgba(255,255,255,0.03);
box-shadow: 0 20px 50px rgba(0,0,0,0.5);
padding: 40px;
display: flex;
flex-direction: column;
align-items: center;
}
h2 {
text-align: center;
margin-bottom: 20px;
color: #00ffa0;
letter-spacing: 1px;
}
/* -------- Section Profil -------- */
.profil {
width: 100%;
display: flex;
align-items: center;
justify-content: flex-start;
gap: 30px;
margin-bottom: 40px;
background: rgba(255,255,255,0.03);
border-radius: 16px;
padding: 25px;
box-shadow: 0 15px 40px rgba(0,0,0,0.4), inset 0 0 30px rgba(0,255,160,0.05);
}
.profil img {
width: 120px;
height: 120px;
border-radius: 50%;
object-fit: cover;
border: 2px solid #00ffa0;
background: rgba(255,255,255,0.05);
}
.profil-info {
display: flex;
flex-direction: column;
gap: 8px;
}
.profil-info h3 {
color: #00ffa0;
margin: 0;
font-size: 22px;
}
.profil-info p {
margin: 0;
color: #ccc;
font-size: 15px;
}
/* -------- Tableau Collaborations -------- */
table {
width: 100%;
border-collapse: collapse;
background: rgba(255,255,255,0.03);
border-radius: 12px;
overflow: hidden;
box-shadow: 0 15px 40px rgba(0,0,0,0.4), inset 0 0 40px rgba(0,255,160,0.08);
}
th, td {
padding: 15px;
text-align: center;
}
th {
background: rgba(0,255,160,0.08);
color: #00ffa0;
font-weight: bold;
text-transform: uppercase;
font-size: 14px;
}
tr:nth-child(even) {
background: rgba(255,255,255,0.02);
}
td {
font-size: 15px;
color: #ccc;
}
button {
padding: 8px 16px;
background: linear-gradient(90deg, rgba(0,255,160,0.9), rgba(0,200,120,0.6));
border: none;
border-radius: 6px;
color: #04121a;
cursor: pointer;
font-weight: bold;
transition: 0.3s;
}
button:hover {
transform: scale(1.05);
background: linear-gradient(90deg, rgba(0,255,180,1), rgba(0,255,140,0.8));
}
.neon-line {
width: 60%;
height: 6px;
border-radius: 999px;
background: linear-gradient(90deg, rgba(0,255,160,0.9), rgba(0,200,120,0.6));
filter: blur(6px);
margin-top: 30px;
}
.empty-message {
margin-top: 20px;
font-style: italic;
color: #888;
}
</style>
</head>
<body>
<div class="container">
<!-- SECTION PROFIL ENTREPRISE -->
<div class="profil">
<img src="https://via.placeholder.com/120x120.png?text=Logo" alt="Logo de l'entreprise">
<div class="profil-info">
<h3 id="nom_entreprise">Nom de l’entreprise</h3>
<p id="domaine">Domaine : </p>
<p id="email">Email : </p>
<p id="telephone">Téléphone : </p>
</div>
</div>
<!-- SECTION COLLABORATIONS -->
<h2>Mes collaborations</h2>
<table>
<thead>
<tr>
<th>Nom du projet</th>
<th>Rôle</th>
<th>Statut</th>
<th>Date de début</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td><button disabled>Voir détails</button></td>
</tr>
</tbody>
</table>
<p class="empty-message">Aucune collaboration enregistrée pour le moment.</p>
<div class="neon-line"></div>
</div>
</body>
</html>