1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
   | <html xmlns="http://www.w3.org/1999/xhtml">
 
<header>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="style.css" />
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="https://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
 
<script type='text/javascript' src='animmsg.js'></script>
 
<script>
//script qui envoie un message si le visiteur est inactif depuis 5min
	setTimeout(function(){
 
        $('#conversation').append("<hr width='250px'><div id='loader'></div><div id='roboconv' class='animate-bottom'><img  id='imgrobot' src='logo/robotcompta.png' /><div id='robot' ><p style='font-size:14px; margin-left: 20px;'>Créer un compte en cliquant ici</p> <p style='font-size:14px; margin-left: 20px;' class='them'><input type='button' id='buttonchoix' value='Enregistrement' onclick='enregistrement(); return false;'></p></div></div>");
 
       },5000);
</script>
 
</header>
 
<body>
	<div id="containermenu">
	      <h1>TEST</h1>
 
	</div>
 
	<div id="espace"></div>
 
 
<div id="containerbody">
 
    <div id="container">
		<div id="conversation" name="conversation">
 
		 <div id='loader'></div>
 
		 <div id="roboconv" class='animate-bottom'>
 
		 <img style='width:40px; position: absolute; border-radius: 10px;' src='logo/robotcompta.png' />
			<div id='robot'>
				 <p style='font-size:14px; margin-left: 20px;' class='them'>
				    Bonjour !
				</p>
				<p style='font-size:14px; margin-left: 20px;'>
				    Je suis votre assistant <strong>Robot</strong>
				</p>
 
				    <form name="choixrecherche" method="POST">
				        <p style='font-size:14px; margin-left: 20px;'>
				        	<input type='hidden' value='musique' id='musique' name='musique'>
				        	<input type='hidden' value='graff' id='graff' name='graff'>
				    		<input type='button' value='Musique' id="buttonchoix" onclick="choixentreprise(); return false;">
				    		<input type='button' value='graff' id="buttonchoix" onclick="choixcompte(); return false;">
 
				    </form>
 
			</div></div></div>
 
    <div id="containerform">
<form name="envoieform" method="POST">
	<input type="text" maxlength="150" placeholder="Entrer un message..." value="" name="msg" id="msg">
	<input type="image" src="logo/images_conversation/bouton-envoyer.png" value="envoyer"  onclick="envoie(); return false;">
</form>
	</div>
 
	<!-- affiche la selection du choix entreprise ou compte --><div id='divchoix'></div>
 
	</div></div>
 
</body>
 
</html> | 
Partager