forked from vergnet/site-accueil-insa
Photo test v10
This commit is contained in:
parent
eb48afe0d5
commit
0a131550f3
4 changed files with 31 additions and 3 deletions
|
@ -2,12 +2,22 @@
|
|||
ob_start(); // Start reading html
|
||||
?>
|
||||
<body>
|
||||
-TEXTE-
|
||||
-TEXTE- (tarifs, règles de commande, etc...)
|
||||
|
||||
<br><br>
|
||||
|
||||
<iframe src="https://docs.google.com/forms/d/e/1FAIpQLSeQ6ldsTuBGNN5hnp7KP_tt2rRuvRREJMvohjwsOhXCVCnECw/viewform?embedded=true" scrolling="no" height="1400">Chargement…</iframe>
|
||||
<?php
|
||||
$is_image = false;
|
||||
$link = "phoneorder.php";
|
||||
$icon = "fa fa-mobile-phone";
|
||||
$text = "Commander depuis téléphone";
|
||||
include("includes/main_button_template.php");
|
||||
|
||||
$link = "computerorder.php";
|
||||
$icon = "fas fa-desktop";
|
||||
$text = "Commander depuis ordinateur";
|
||||
include("includes/main_button_template.php");
|
||||
?>
|
||||
|
||||
</body>
|
||||
<?php
|
||||
|
|
9
computerorder.php
Normal file
9
computerorder.php
Normal file
|
@ -0,0 +1,9 @@
|
|||
<div>-TEXTE-
|
||||
<iframe src="https://docs.google.com/forms/d/e/1FAIpQLSeQ6ldsTuBGNN5hnp7KP_tt2rRuvRREJMvohjwsOhXCVCnECw/viewform?embedded=true" width="750" height="1290" frameborder="0" marginheight="0" marginwidth="0">Chargement…</iframe>
|
||||
</div>
|
||||
|
||||
<?php
|
||||
$pageContent = ob_get_clean(); // Store html content in variable
|
||||
$pageTitle = "Commande";
|
||||
include("includes/template.php"); // Display template with variable content
|
||||
?>
|
9
phoneorder.php
Normal file
9
phoneorder.php
Normal file
|
@ -0,0 +1,9 @@
|
|||
<div>-TEXTE-
|
||||
<iframe src="https://docs.google.com/forms/d/e/1FAIpQLSeQ6ldsTuBGNN5hnp7KP_tt2rRuvRREJMvohjwsOhXCVCnECw/viewform?embedded=true" width="750" height="1290" frameborder="0" marginheight="0" marginwidth="0">Chargement…</iframe>
|
||||
</div>
|
||||
|
||||
<?php
|
||||
$pageContent = ob_get_clean(); // Store html content in variable
|
||||
$pageTitle = "Commande";
|
||||
include("includes/template.php"); // Display template with variable content
|
||||
?>
|
|
@ -285,8 +285,8 @@ function generatePath($path)
|
|||
<?php endif; ?>
|
||||
</div>
|
||||
|
||||
<div>Pour commander tes photos, clique <a href="commandetest.php">ici</a> !</div>
|
||||
|
||||
<link rel="stylesheet" type="text/css" media="screen" href="assets/css/photos.css">
|
||||
|
||||
<?php
|
||||
$pageContent = ob_get_clean(); // Store html content in variable
|
||||
|
|
Loading…
Reference in a new issue