BUG FIX: name size
This commit is contained in:
@@ -1,12 +1,17 @@
|
||||
<div class="content">
|
||||
<div class="profile-box platform">
|
||||
<img class="left main-picture group-picture" src="<?= $group['picture'] ?>">
|
||||
<div class="group-button-container"></div>
|
||||
<h1 class="profile-username"><?= $group['name'] ?></h1>
|
||||
<p><?= $group['description'] ?></p>
|
||||
|
||||
<div class="user-box">
|
||||
<img class="group-picture main-picture" src="<?= $group["picture"] ?>"><br />
|
||||
<div class="platform">
|
||||
<div class="status-buttons-container">
|
||||
<button disabled class="gray"><?= $group["status"] ?></button>
|
||||
</div>
|
||||
<div class="group-button-container"></div>
|
||||
<div class="profile-info">
|
||||
<h2><?= $group["name"]?></h2>
|
||||
<?= $group["description"] ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="item-box-full-width platform">
|
||||
<h2>Leden (<?= $group['members'] ?>)</h2>
|
||||
<p>
|
||||
|
||||
@@ -17,6 +17,7 @@ $settings = getSettings();
|
||||
<input type="text"
|
||||
name="fname"
|
||||
id="fname"
|
||||
maxlength="63"
|
||||
placeholder="Voornaam"
|
||||
title="Voornaam"
|
||||
value="<?=$settings["fname"]?>"
|
||||
@@ -27,6 +28,7 @@ $settings = getSettings();
|
||||
<input type="text"
|
||||
name="lname"
|
||||
id="lname"
|
||||
maxlength="63"
|
||||
placeholder="Achternaam"
|
||||
value="<?=$settings["lname"]?>"
|
||||
>
|
||||
@@ -36,6 +38,7 @@ $settings = getSettings();
|
||||
<input type="text"
|
||||
name="location"
|
||||
id="location"
|
||||
maxlength="50"
|
||||
placeholder="Locatie"
|
||||
value="<?=$settings["location"]?>"
|
||||
>
|
||||
@@ -186,6 +189,7 @@ $settings = getSettings();
|
||||
<label for="email-old">Huidig Email </label>
|
||||
<input type="email"
|
||||
id="email-old"
|
||||
maxlength="255"
|
||||
value="<?=$settings["email"]?>"
|
||||
disabled
|
||||
>
|
||||
@@ -194,6 +198,7 @@ $settings = getSettings();
|
||||
<label for="email">Nieuw Email</label>
|
||||
<input type="email"
|
||||
name="email"
|
||||
maxlength="255"
|
||||
id="email"
|
||||
placeholder="Nieuw Email"
|
||||
>
|
||||
@@ -203,14 +208,16 @@ $settings = getSettings();
|
||||
<input type="email"
|
||||
name="email-confirm"
|
||||
id="email-confirm"
|
||||
maxlength="255"
|
||||
placeholder="Bevestig Email"
|
||||
>
|
||||
</li>
|
||||
<li>
|
||||
<button type="submit"
|
||||
name="form"
|
||||
value="email"
|
||||
>Verander Email</button>
|
||||
value="email">
|
||||
Verander Email
|
||||
</button>
|
||||
</li>
|
||||
</ul>
|
||||
</form>
|
||||
|
||||
Reference in New Issue
Block a user