You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
WF-Website/vue/templates/recapSubmitQuote.html.twig

51 lines
1.0 KiB

<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Wiki Fantasy : Submit Quote</title>
<link id="favicon" rel="icon" href="../../images/iconeSombre.ico"> <!-- Par défaut sombre -->
<link rel="stylesheet" href="../../public/styles/styleSubmitQuote.css">
<script defer src="../../public/script/theme-toggle.js"></script>
</head>
<body>
{% include "bandeau.html.twig" %}
<h1>▶ Your quote has been submitted successfully ◀</h1>
<div>
<div id="box">
<div id="contentField">
<p>Contenu *</p>
<h2>{{ content }}</h2>
</div>
<div id="characterField">
<p>Personnage *</p>
<h2>{{ character }}</h2>
</div>
<div id="sourceField">
<p>Source *</p>
<h2>{{ source }}</h2>
</div>
<div>
<button onclick="window.location.href='/';"> Revenir à l'acceuil</button>
</div>
</div>
</div>
</body>
</html>