www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

download.php (2231B)


      1 <?php
      2 session_start();
      3 
      4 if(!isset($_SESSION['userId']))
      5 	header("location:login.php?return=download&showmsg=oth_login_download_nauth");
      6 
      7 $dl = "ressources/pticlic-alpha-v0.2.apk"
      8 
      9 ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
     10 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
     11 	<head>
     12 		<title>PtiClic sous Android™ - Version Alpha - Téléchargement</title>
     13 		<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />		
     14 		<link rel="stylesheet" href="ressources/simple.css" />
     15 	</head>
     16 	<body>
     17 		<?php include("ressources/menu.inc"); ?>
     18 		<div class="content">
     19 			<?php include("ressources/showmsg.inc"); ?>
     20 			<h2>Téléchargement de l'application</h2>			
     21 			<span class="downloadarea"><a href="<?php echo $dl; ?>" id="downloadlink">Téléchargement</a></span>
     22 			<h2>Installation de l'application</h2>
     23 			<h3> A partir de votre téléphone </h3>
     24 			<ul>
     25 				<li><a href="<?php echo $dl; ?>">Téléchargez le fichier d'installation</a>.</li>
     26 				<li>Vous avez besoin d'autoriser votre téléphone à accepter les sources inconnue. Pour cela, allez dans
     27 					Préférence→Application. Cochez «Sources inconnues».</li>
     28 				<li>Une fois téléchargé, cliquez sur le fichier dans la barre de notification d'Android™ et suivez les instructions
     29 					d'installation. Vous devrez patienter quelques instants pendant l'installation.</li>
     30 				<li>Une fois l'installation terminée, démarrez l'application.</li>
     31 				<li>Suivez attentivement les instructions lors du premier démarrage de l'application.</li>
     32 			</ul>
     33 			<h3> A partir de votre ordinateur </h3>
     34 			<ul>
     35 				<li><a href="<?php echo $dl; ?>">Téléchargez le fichier d'installation</a>.</li>
     36 				<li>Transférez ce fichier sur votre téléphone à l'aide de bluetooth, une clé usb ou autre.</li>
     37 				<li>Depuis votre téléphone, trouvez sur votre carte mémoire l'application que vous venez de transférer.</li>
     38 				<li>Cliquez sur l'application afin de l'installer sur votre téléphone</li>
     39 				<li>Suivez attentivement les instructions lors du premier démarrage de l'application</li>
     40 			</ul>
     41 		</div>
     42 		<?php include("ressources/footer.inc"); ?>
     43 	</body>
     44 </html>