add bootstrap for Admin view
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
ec0d578f4b
commit
6b53c75b82
@ -1,37 +1,73 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<?php
|
<?php
|
||||||
global $googleApis, $googleStatic, $poppins, $icon, $logoUCA;
|
global $googleApis, $googleStatic, $poppins, $icon, $logoUCA;
|
||||||
?>
|
?>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<link rel="stylesheet" href="Views/CSS/base.css" />
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
|
||||||
<link rel="preconnect" href="<?php echo $googleApis; ?>">
|
<meta name="description" content="" />
|
||||||
<link rel="preconnect" href="<?php echo $googleStatic; ?>" crossorigin>
|
<meta name="author" content="" />
|
||||||
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.5.0/font/bootstrap-icons.css" rel="stylesheet" />
|
||||||
|
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" rel="stylesheet" />
|
||||||
|
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" />
|
||||||
|
<link href="Views/css/styles.css" rel="stylesheet" />
|
||||||
|
<link href="Views/css/stylesForm.css" rel="stylesheet" />
|
||||||
<link href="<?php echo $poppins; ?>" rel="stylesheet">
|
<link href="<?php echo $poppins; ?>" rel="stylesheet">
|
||||||
<title>Formulaire de témoignage</title>
|
|
||||||
<link rel="shortcut icon" href="<?php echo $icon; ?>" type="image/x-icon">
|
<link rel="shortcut icon" href="<?php echo $icon; ?>" type="image/x-icon">
|
||||||
<link rel="icon" href="<?php echo $icon; ?>" type="image/x-icon">
|
<link rel="icon" href="<?php echo $icon; ?>" type="image/x-icon">
|
||||||
|
<link rel="preconnect" href="<?php echo $googleApis; ?>">
|
||||||
|
<link rel="preconnect" href="<?php echo $googleStatic; ?>" crossorigin>
|
||||||
|
<title>Formulaire de témoignage</title>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
<img id="logoUCA" src="<?php echo $logoUCA; ?>" height="35px" width="auto" alt="logo UCA">
|
<header class="py-1">
|
||||||
<h1>Administration</h1>
|
<div class="container px-4 px-lg-5 my-5">
|
||||||
|
<div class="text-center text-white">
|
||||||
|
<h1 class="display-4 fw-bolder">Les Témoignages</h1>
|
||||||
|
<p class="lead fw-normal text-white-50 mb-0">IUT Informatique de Clermont-Ferrand</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-light bg-light">
|
||||||
|
<div class="container-fluid">
|
||||||
|
<a class="navbar-brand" href="#">Administration</a>
|
||||||
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
||||||
|
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="index.php?action=GoToAddTestimony">Témoignages</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
<div class="form-center">
|
<div class="text-center">
|
||||||
<h2>Continuer d'ajouter des possibilités de réponses ?</h2>
|
<h2>Continuer d'ajouter des possibilités de réponses ?</h2>
|
||||||
<form method="post">
|
<form method="post">
|
||||||
<input name="idQuestion" type="hidden" value="<?php echo $idQuestion; ?>">
|
<input name="idQuestion" type="hidden" value="<?php echo $idQuestion; ?>">
|
||||||
<input name="question" type="hidden" value="<?php echo $questionContent; ?>">
|
<input name="question" type="hidden" value="<?php echo $questionContent; ?>">
|
||||||
<input name="type" type="hidden" value="<?php echo $type; ?>">
|
<input name="type" type="hidden" value="<?php echo $type; ?>">
|
||||||
|
<br>
|
||||||
<input type="submit" name="choose" value="Oui">
|
<input type="submit" name="choose" value="Oui" style="width: 20%">
|
||||||
<input type="submit" name="choose" value="Non">
|
<br>
|
||||||
|
<input type="submit" name="choose" value="Non" style="width: 20%">
|
||||||
<input type="hidden" name="action" value="continueResponse">
|
<input type="hidden" name="action" value="continueResponse">
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.bundle.min.js"></script>
|
||||||
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>
|
||||||
|
<script src="Views/js/scripts.js"></script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
|
@ -0,0 +1,51 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<?php
|
||||||
|
global $googleApis, $googleStatic, $poppins, $icon, $logoUCA;
|
||||||
|
?>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<link rel="stylesheet" href="Views/CSS/styles.css" />
|
||||||
|
<link rel="stylesheet" href="Views/CSS/stylesForm.css" />
|
||||||
|
<link rel="preconnect" href="<?php echo $googleApis; ?>">
|
||||||
|
<link rel="preconnect" href="<?php echo $googleStatic; ?>" crossorigin>
|
||||||
|
<link href="<?php echo $poppins; ?>" rel="stylesheet">
|
||||||
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.5.0/font/bootstrap-icons.css" rel="stylesheet" />
|
||||||
|
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" rel="stylesheet" />
|
||||||
|
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" />
|
||||||
|
<title>Formulaire de témoignage</title>
|
||||||
|
<link rel="shortcut icon" href="<?php echo $icon; ?>" type="image/x-icon">
|
||||||
|
<link rel="icon" href="<?php echo $icon; ?>" type="image/x-icon">
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<header class="py-1">
|
||||||
|
<div class="container px-4 px-lg-5 my-5">
|
||||||
|
<div class="text-center text-white">
|
||||||
|
<h1 class="display-4 fw-bolder">Les Témoignages</h1>
|
||||||
|
<p class="lead fw-normal text-white-50 mb-0">IUT Informatique de Clermont-Ferrand</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<div class='container mt-5'>
|
||||||
|
<div class='row d-flex justify-content-center align-items-center'>
|
||||||
|
<div class='col-md-8'>
|
||||||
|
<div class="text-center">
|
||||||
|
<h2>Merci d'avoir participé à ce questionnaire !</h2>
|
||||||
|
<p>Nous vous recontacterons si votre profil nous intéresse.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.bundle.min.js"></script>
|
||||||
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>
|
||||||
|
<script src="Views/JS/scripts.js"></script>
|
||||||
|
<script src="Views/JS/getData-Ids.js"></script>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
Loading…
Reference in new issue