mirror of
https://gitlab.com/animath/si/plateforme-corres2math.git
synced 2025-01-06 00:22:21 +00:00
Design page "Envoyer vidéo" & corrections mineures
This commit is contained in:
parent
82a8246560
commit
5c5c670958
@ -54,7 +54,7 @@ class User
|
||||
{
|
||||
global $DB, $YEAR;
|
||||
$admins = [];
|
||||
$req = $DB->query("SELECT * FROM `users` WHERE `year` = $YEAR;");
|
||||
$req = $DB->query("SELECT * FROM `users` WHERE `role` = 'ADMIN' AND `year` = $YEAR;");
|
||||
|
||||
while (($data = $req->fetch()) !== false) {
|
||||
$admin = new User();
|
||||
|
@ -45,11 +45,9 @@ require_once "header.php";
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<div class="form-row">
|
||||
<label for="allow_publish">J'accepte qu'Animath diffuse mes vidéos à la fin du tournoi (<em>facultatif</em>) :</label>
|
||||
<input class="form-control" type="checkbox" id="allow_publish" name="allow_publish"
|
||||
<label for="allow_publish">J'accepte qu'Animath diffuse mes vidéos à la fin du tournoi (<em>facultatif</em>) :</label>
|
||||
<input type="checkbox" id="allow_publish" name="allow_publish"
|
||||
<?= isset($new_team) && $new_team->allow_publish ? "checked" : "" ?> />
|
||||
</div>
|
||||
|
||||
<div class="form-group row">
|
||||
<input class="btn btn-primary btn-lg btn-block" name="add_team" type="submit" value="Ajouter une équipe"/>
|
||||
|
@ -96,8 +96,8 @@
|
||||
|
||||
<div class="alert alert-<?= Phase::getCurrentPhase() < Phase::PHASE1 ? "danger" : (Phase::getCurrentPhase() == Phase::PHASE1 ? "warning" : "success") ?>">
|
||||
<?= Phase::getTranslatedName(Phase::PHASE1) ?> :
|
||||
Du <strong><?= formatDate($CONFIG->getStartPhase2Date(), true) ?></strong> au
|
||||
<strong><?= formatDate($CONFIG->getEndPhase2Date(), true) ?></strong>
|
||||
Du <strong><?= formatDate($CONFIG->getStartPhase1Date(), true) ?></strong> au
|
||||
<strong><?= formatDate($CONFIG->getEndPhase1Date(), true) ?></strong>
|
||||
</div>
|
||||
|
||||
<div class="alert alert-<?= Phase::getCurrentPhase() < Phase::PHASE2 ? "danger" : (Phase::getCurrentPhase() == Phase::PHASE2 ? "warning" : "success") ?>">
|
||||
|
@ -1,63 +1,59 @@
|
||||
<?php
|
||||
|
||||
require_once "header.php";
|
||||
|
||||
if (isset($new_video) && !$has_error)
|
||||
echo "<h2>Votre vidéo a bien été envoyée !</h2>";
|
||||
?>
|
||||
|
||||
<div class="mt-4 mb-4">
|
||||
<h1 class="display-4">Envoyer la vidéo de solution</h1>
|
||||
</div>
|
||||
|
||||
<?php if (isset($new_video) && !$has_error) { ?>
|
||||
<div class="alert alert-success">
|
||||
Votre vidéo a bien été envoyée !
|
||||
</div>
|
||||
<?php } ?>
|
||||
|
||||
<?php
|
||||
if ($video !== null) {
|
||||
$link = $video->getLink();
|
||||
echo "Lien de la vidéo déjà envoyée : <a href=\"$link\">$link</a> (version " . $video->getVersion() . ")<br />\n";
|
||||
displayVideo($link);
|
||||
switch ($video->getValidation()) {
|
||||
$link = $video->getLink();
|
||||
echo "<div class=\"alert alert-info\">Lien de la vidéo déjà envoyée : <a href=\"$link\">$link</a> (version " . $video->getVersion() . ")</div>\n";
|
||||
displayVideo($link);
|
||||
switch ($video->getValidation()) {
|
||||
case 0:
|
||||
echo "La vidéo n'a pas encore été contrôlée.<br />";
|
||||
echo "<div class=\"alert alert-warning\">La vidéo n'a pas encore été contrôlée.</div>";
|
||||
break;
|
||||
case 1:
|
||||
echo "La vidéo a été acceptée.<br />";
|
||||
echo "<div class=\"alert alert-success\">La vidéo a été acceptée.</div>";
|
||||
break;
|
||||
case -1:
|
||||
echo "La vidéo a été rejetée.<br />";
|
||||
echo "<div class=\"alert alert-danger\">La vidéo a été rejetée.</div>";
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
if ($video_validated != null && $video_validated->getId() != $video->getId()) {
|
||||
$link = $video_validated->getLink();
|
||||
echo "<hr />\nLien de la dernière vidéo validée : <a href=\"$link\">$link</a><br />";
|
||||
displayVideo($link);
|
||||
$link = $video_validated->getLink();
|
||||
echo "<hr />\n<div class=\"alert alert-info\">Lien de la dernière vidéo validée : <a href=\"$link\">$link</a></div>\n";
|
||||
displayVideo($link);
|
||||
}
|
||||
?>
|
||||
|
||||
<form method="POST">
|
||||
<table >
|
||||
<tbody>
|
||||
<tr>
|
||||
<td style="width: 30%;">
|
||||
<label for="link">Lien de la vidéo à soumettre :</label>
|
||||
</td>
|
||||
<td style="width: 70%;">
|
||||
<input type="url" id="link" name="link" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: center;" colspan="2">
|
||||
<input type="checkbox" name="valid_link" id="valid_link" required /> <label for="valid_link">Je confirme que le lien est valide</label>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: center;" colspan="2">
|
||||
<input type="checkbox" name="no_change" id="no_change" required /> <label for="no_change">Je m'engage à ne pas changer le contenu du lien et de la vidéo</label>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
<input type="submit" name="upload" value="Envoyer la vidéo" />
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</form>
|
||||
<hr/>
|
||||
|
||||
<form method="POST">
|
||||
<div class="form-row">
|
||||
<div class="form-group col-md-12">
|
||||
<label for="link">Lien de la vidéo à soumettre :</label>
|
||||
<input class="form-control" type="url" id="link" name="link"/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<input type="checkbox" name="valid_link" id="valid_link" required/> <label for="valid_link">Je
|
||||
confirme que le lien est valide</label><br/>
|
||||
|
||||
<input type="checkbox" name="no_change" id="no_change" required/> <label for="no_change">Je m'engage
|
||||
à ne pas changer le contenu du lien et de la vidéo</label>
|
||||
|
||||
<input class="btn btn-primary btn-lg btn-block" type="submit" name="upload" value="Envoyer la vidéo"/>
|
||||
</form>
|
||||
|
||||
<?php require_once "footer.php";
|
@ -1,3 +1,5 @@
|
||||
<div class="mt-4 mb-4">
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -90,11 +90,9 @@ if (isset($user) && !$has_error) {
|
||||
|
||||
</div>
|
||||
|
||||
<div class="form-row">
|
||||
<label for="receive_animath_mails">J'accepte de recevoir des mails de la part d'Animath (<em>facultatif</em>) :</label>
|
||||
<input class="form-control" type="checkbox" id="receive_animath_mails" name="receive_animath_mails"
|
||||
<?= isset($user) && $user->receive_animath_mails ? "checked" : "" ?> />
|
||||
</div>
|
||||
<label for="receive_animath_mails">J'accepte de recevoir des mails de la part d'Animath (<em>facultatif</em>) :</label>
|
||||
<input type="checkbox" id="receive_animath_mails" name="receive_animath_mails"
|
||||
<?= isset($user) && $user->receive_animath_mails ? "checked" : "" ?> /><br /><br />
|
||||
|
||||
<div class="form-group row">
|
||||
<input class="btn btn-primary btn-lg btn-block" name="register" type="submit" value="S'inscrire"/>
|
||||
|
@ -45,11 +45,9 @@ if (!$has_error && (isset($my_account) || isset($new_password))) {
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-row">
|
||||
<label for="receive_animath_mails">J'accepte de recevoir des mails de la part d'Animath (<em>facultatif</em>) :</label>
|
||||
<input class="form-control" type="checkbox" id="receive_animath_mails" name="receive_animath_mails"
|
||||
<label for="receive_animath_mails">J'accepte de recevoir des mails de la part d'Animath (<em>facultatif</em>) :</label>
|
||||
<input type="checkbox" id="receive_animath_mails" name="receive_animath_mails"
|
||||
<?= $user->doReceiveAnimathMails() ? "checked" : "" ?> />
|
||||
</div>
|
||||
|
||||
<?php if ($user->getRole() == Role::PARTICIPANT) { ?>
|
||||
<div class="form-row">
|
||||
|
@ -136,7 +136,7 @@ require_once "header.php";
|
||||
<hr />
|
||||
<form method="post">
|
||||
<label for="engage">Je m'engage à participer à l'intégralité des Correspondances</label>
|
||||
<input class="form-control" type="checkbox" name="engage" id="engage"/>
|
||||
<input type="checkbox" name="engage" id="engage"/>
|
||||
<input class="btn btn-primary btn-lg btn-block" type="submit" name="request_validation"
|
||||
value="Demander la validation"/>
|
||||
</form>
|
||||
|
Loading…
Reference in New Issue
Block a user