mirror of
https://gitlab.com/animath/si/plateforme-corres2math.git
synced 2025-06-26 05:57:36 +02:00
Desgn "Mon compte" & mini-corrections
This commit is contained in:
@ -1,91 +1,117 @@
|
||||
<?php
|
||||
require_once "header.php";
|
||||
?>
|
||||
|
||||
<div class="mt-4 mb-4">
|
||||
<h1 class="display-4">Mon compte</h1>
|
||||
</div>
|
||||
|
||||
<?php
|
||||
if (!$has_error && (isset($my_account) || isset($new_password))) {
|
||||
?>
|
||||
<h2>Votre compte a bien été mis à jour !</h2>
|
||||
<div class="alert alert-success">
|
||||
Votre compte a bien été mis à jour !
|
||||
</div>
|
||||
<?php
|
||||
if (isset($my_account) && $user->getEmail() != $my_account->email) {
|
||||
echo "Votre adresse mail a bien été changée. Veuillez vérifier votre boîte mail pour valider votre nouvelle adresse, vous en aurez besoin pour vous reconnecter.";
|
||||
}
|
||||
?>
|
||||
if (isset($my_account) && $user->getEmail() != $my_account->email) { ?>
|
||||
<div class="alert alert-info">
|
||||
Votre adresse mail a bien été changée. Veuillez vérifier votre boîte mail pour valider votre nouvelle
|
||||
adresse, vous en aurez besoin pour vous reconnecter.
|
||||
</div>
|
||||
<?php } ?>
|
||||
<?php } ?>
|
||||
|
||||
<form method="POST">
|
||||
<table style="width: 100%">
|
||||
<tr>
|
||||
<td style="width: 30%"><label for="email">E-mail :</label></td>
|
||||
<td style="width: 70%"><?= $user->getEmail() ?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2"><input style="width: 100%" type="email" id="email" name="email"/></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="surname">Nom :</label></td>
|
||||
<td><?= $user->getSurname() ?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2"><input style="width: 100%" type="text" id="surname" name="surname"/></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="firstname">Prénom :</label></td>
|
||||
<td><?= $user->getFirstName() ?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2"><input style="width: 100%" type="text" id="firstname" name="firstname"/></td>
|
||||
</tr>
|
||||
<form method="POST">
|
||||
|
||||
<div class="form-row">
|
||||
<div class="form-group col-md-6">
|
||||
<label for="surname">Nom :</label>
|
||||
<input class="form-control" type="text" id="surname" name="surname"
|
||||
value="<?= $user->getSurname() ?>" required/>
|
||||
</div>
|
||||
|
||||
<div class="form-group col-md-6">
|
||||
<label for="first_name">Prénom :</label>
|
||||
<input class="form-control" type="text" id="first_name" name="first_name"
|
||||
value="<?= $user->getFirstName() ?>" required/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-row">
|
||||
<div class="form-group col-md-12">
|
||||
<label for="email">E-mail :</label>
|
||||
<input class="form-control" type="email" id="email" name="email"
|
||||
value="<?= $user->getEmail() ?>" required/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-row">
|
||||
<label for="receive_animath_mails">J'accepte de recevoir des mails de la part d'Animath :</label>
|
||||
<input class="form-control" type="checkbox" id="receive_animath_mails" name="receive_animath_mails"
|
||||
<?= $user->doReceiveAnimathMails() ? "checked" : "" ?> />
|
||||
</div>
|
||||
|
||||
<?php if ($user->getRole() == Role::PARTICIPANT) { ?>
|
||||
<tr>
|
||||
<td><label for="school">Établissement dans lequel l'élève étudie :</label></td>
|
||||
<td><?= $user->getSchool() ?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2"><input style="width: 100%" type="text" id="school" name="school"/></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="class">Classe :</label></td>
|
||||
<td><select style="width: 100%" id="class" name="class">
|
||||
<option value="terminale" <?php if ($user->getClass() == SchoolClass::TERMINALE) echo "selected" ?>><?= SchoolClass::getTranslatedName(SchoolClass::TERMINALE) ?></option>
|
||||
<option value="premiere" <?php if ($user->getClass() == SchoolClass::PREMIERE) echo "selected" ?>><?= SchoolClass::getTranslatedName(SchoolClass::PREMIERE) ?></option>
|
||||
<option value="seconde" <?php if ($user->getClass() == SchoolClass::SECONDE) echo "selected" ?>><?= SchoolClass::getTranslatedName(SchoolClass::SECONDE) ?></option>
|
||||
</select></td>
|
||||
</tr>
|
||||
<div class="form-row">
|
||||
<div class="form-group col-md-6">
|
||||
<label id="school_label" for="school">Établissement dans lequel l'élève étudie :</label>
|
||||
<input class="form-control" type="text" id="school" name="school"
|
||||
value="<?= $user->getSchool() ?>"/>
|
||||
</div>
|
||||
|
||||
<div class="form-group col-md-6">
|
||||
<label id="class_label" for="class">Classe :</label>
|
||||
<select id="class" name="class" class="custom-select">
|
||||
<option value="terminale"><?= SchoolClass::getTranslatedName(SchoolClass::TERMINALE) ?>
|
||||
<?= $user->getClass() == SchoolClass::TERMINALE ? "selected" : "" ?></option>
|
||||
<option value="premiere"><?= SchoolClass::getTranslatedName(SchoolClass::PREMIERE) ?>
|
||||
<?= $user->getClass() == SchoolClass::PREMIERE ? "selected" : "" ?></option>
|
||||
<option value="seconde"><?= SchoolClass::getTranslatedName(SchoolClass::SECONDE) ?>
|
||||
<?= $user->getClass() == SchoolClass::SECONDE ? "selected" : "" ?></option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<?php } else { ?>
|
||||
<tr>
|
||||
<td><label for="description">Description :</label></td>
|
||||
<td><textarea style="width: 100%" id="description" name="description"><?= $user->getDescription() ?></textarea></td>
|
||||
</tr>
|
||||
|
||||
<div class="form-group row">
|
||||
<label id="description_label" for="description">Description :</label>
|
||||
<textarea class="form-control" id="description"
|
||||
name="description"><?= $user->getDescription() ?></textarea>
|
||||
</div>
|
||||
|
||||
<?php } ?>
|
||||
<tr>
|
||||
<td style="text-align: center;" colspan="2"><input type="checkbox" id="receive_animath_mails" name="receive_animath_mails" <?= $user->doReceiveAnimathMails() ? "checked" : "" ?> /> <label for="receive_animath_mails">J'accepte de recevoir des mails de la part d'Animath</label></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2"><input type="submit" style="width: 100%" name="update_team" value="Mettre à jour mes données"/></td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
|
||||
<div style="padding: 20px"></div>
|
||||
<div class="form-group row">
|
||||
<input class="btn btn-primary btn-lg btn-block" name="update_account" type="submit"
|
||||
value="Enregistrer les modifications"/>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
<form method="POST">
|
||||
<input type="hidden" name="submitted_password" value="true"/>
|
||||
<table style="width: 100%">
|
||||
<tr>
|
||||
<td style="width: 30%"><label for="old_password">Ancien mot de passe :</label></td>
|
||||
<td style="width: 70%"><input style="width: 100%" type="password" id="old_password" name="old_password"/></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="new_password">Nouveau mot de passe :</label></td>
|
||||
<td><input style="width: 100%" type="password" id="new_password" name="new_password"/></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="confirm_password">Confirmer le mot de passe :</label></td>
|
||||
<td><input style="width: 100%" type="password" id="confirm_password" name="confirm_password"/></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2"><input type="submit" style="width: 100%" value="Mettre à jour mon mot de passe"/></td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
<hr />
|
||||
|
||||
<form method="POST">
|
||||
|
||||
<div class="form-row">
|
||||
<div class="form-group col-md-4">
|
||||
<label for="old_password">Ancien mot de passe :</label>
|
||||
<input class="form-control" type="password" id="old_password" name="old_password" required/>
|
||||
</div>
|
||||
|
||||
<div class="form-group col-md-4">
|
||||
<label for="new_password">Nouveau mot de passe :</label>
|
||||
<input class="form-control" type="password" id="new_password" name="new_password" required/>
|
||||
</div>
|
||||
|
||||
<div class="form-group col-md-4">
|
||||
<label for="confirm_password">Confirmer le mot de passe :</label>
|
||||
<input class="form-control" type="password" id="confirm_password" name="confirm_password" required/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group row">
|
||||
<input class="btn btn-secondary btn-lg btn-block" type="submit" name="update_password" value="Mettre à jour mon mot de passe"/>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
<?php require_once "footer.php" ?>
|
Reference in New Issue
Block a user