À propos

<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tableau de bord - super-parrain.com</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
background-color: #f5f7fa;
color: #333;
line-height: 1.6;
}

.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}

header {
text-align: center;
margin-bottom: 30px;
}

h1 {
color: #2c3e50;
font-size: 28px;
margin-bottom: 5px;
}

.subtitle {
color: #7f8c8d;
font-size: 16px;
}

.dashboard-card {
background-color: white;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
padding: 25px;
margin-bottom: 25px;
}

.section-title {
color: #3498db;
font-size: 18px;
margin-bottom: 15px;
padding-bottom: 10px;
border-bottom: 1px solid #ecf0f1;
}

.user-info {
display: flex;
align-items: center;
margin-bottom: 20px;
}

.avatar {
width: 80px;
height: 80px;
border-radius: 50%;
background-color: #e0e0e0;
margin-right: 20px;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
border: 3px solid #3498db;
}

.avatar-placeholder {
color: #7f8c8d;
font-size: 14px;
text-align: center;
}

.user-details {
flex: 1;
}

.pseudo {
font-size: 22px;
font-weight: bold;
color: #2c3e50;
margin-bottom: 5px;
}

.email {
color: #7f8c8d;
font-size: 16px;
}

.presentation {
margin-bottom: 25px;
}

.presentation-text {
background-color: #f8f9fa;
border: 1px solid #e9ecef;
border-radius: 5px;
padding: 15px;
min-height: 100px;
color: #495057;
}

.photo-upload {
margin-bottom: 20px;
}

.upload-label {
display: block;
font-weight: 600;
margin-bottom: 8px;
color: #2c3e50;
}

.file-input-wrapper {
display: flex;
align-items: center;
}

.file-name {
margin-left: 15px;
color: #7f8c8d;
font-style: italic;
}

.btn-upload {
background-color: #3498db;
color: white;
border: none;
padding: 8px 15px;
border-radius: 5px;
cursor: pointer;
font-size: 14px;
transition: background-color 0.3s;
}

.btn-upload:hover {
background-color: #2980b9;
}

.btn-save {
background-color: #2ecc71;
color: white;
border: none;
padding: 12px 30px;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
font-weight: 600;
display: block;
margin: 30px auto 0;
transition: background-color 0.3s;
}

.btn-save:hover {
background-color: #27ae60;
}

input[type="file"] {
display: none;
}

.cover-photo {
width: 100%;
height: 150px;
background-color: #e0e0e0;
border-radius: 5px;
margin-top: 10px;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}

.cover-placeholder {
color: #7f8c8d;
}

@media (max-width: 600px) {
.container {
padding: 15px;
}

.user-info {
flex-direction: column;
text-align: center;
}

.avatar {
margin-right: 0;
margin-bottom: 15px;
}
}
</style>
</head>
<body>
<div class="container">
<header>
<h1>Tableau de bord</h1>
<p class="subtitle">super-parrain.com</p>
</header>

<div class="dashboard-card">
<h2 class="section-title">Pseudo</h2>
<div class="user-info">
<div class="avatar">
<div class="avatar-placeholder">Photo de profil</div>
</div>
<div class="user-details">
<div class="pseudo">Arnold45</div>
<div class="email">arnoldkouassi7611@gmail.com</div>
</div>
</div>
</div>

<div class="dashboard-card">
<h2 class="section-title">Présentation</h2>
<div class="presentation">
<div class="presentation-text">
Moi c'est Arnold kouassi j'aimerais avoir ce
</div>
</div>
</div>

<div class="dashboard-card">
<h2 class="section-title">Photo de profil</h2>
<div class="photo-upload">
<label class="upload-label">Choisir un fichier</label>
<div class="file-input-wrapper">
<button class="btn-upload" onclick="document.getElementById('profile-pic').click()">Parcourir</button>
<span class="file-name" id="profile-name">Snapc...484.jpg</span>
<input type="file" id="profile-pic" accept="image/*" onchange="updateFileName('profile-pic', 'profile-name')">
</div>
</div>
</div>

<div class="dashboard-card">
<h2 class="section-title">Photo de couverture</h2>
<div class="photo-upload">
<label class="upload-label">Choisir un fichier</label>
<div class="file-input-wrapper">
<button class="btn-upload" onclick="document.getElementById('cover-pic').click()">Parcourir</button>
<span class="file-name" id="cover-name">IMG_2...318.jpg</span>
<input type="file" id="cover-pic" accept="image/*" onchange="updateFileName('cover-pic', 'cover-name')">
</div>
<div class="cover-photo">
<div class="cover-placeholder">Aperçu de la photo de couverture</div>
</div>
</div>
</div>

<button class="btn-save">Sauvegarder</button>
</div>

<script>
function updateFileName(inputId, fileNameId) {
const fileInput = document.getElementById(inputId);
const fileNameSpan = document.getElementById(fileNameId);

if (fileInput.files.length > 0) {
fileNameSpan.textContent = fileInput.files[0].name;
} else {
fileNameSpan.textContent = "Aucun fichier sélectionné";
}
}
</script>
</body>
</html>super-parrain.com

Offres de parrainage

Comparateurs

Aucun comparateur n'a été créé par ce parrain

Avis des filleuls

Aucun avis