summaryrefslogtreecommitdiff
path: root/beta_accents/app/profil.php
diff options
context:
space:
mode:
Diffstat (limited to 'beta_accents/app/profil.php')
-rw-r--r--beta_accents/app/profil.php59
1 files changed, 59 insertions, 0 deletions
diff --git a/beta_accents/app/profil.php b/beta_accents/app/profil.php
new file mode 100644
index 0000000..289b7f1
--- /dev/null
+++ b/beta_accents/app/profil.php
@@ -0,0 +1,59 @@
+<?php
+require('include/ludo/session_verify.inc.php');
+require_once('include/ludo/html_elements.inc.php');
+require_once('include/connect.inc.php');
+require_once('include/ju.inc.php');
+if ( isset($_REQUEST['action']) )
+{
+ $nom_func = 'traiter_formulaire_' . $_REQUEST['action'];
+ $nom_func();
+}
+generate_html_doctype_and_head("Modèle");
+
+echo "<body>\n";
+generate_html_divs_menu();
+?>
+ <div id="sous_menu">
+ <p class="arbre">
+ &gt; <a href="index.php">Accueil</a>
+ &gt; Administration du profil
+ </p>
+ </div>
+<?php
+generate_html_div_help();
+echo "<div id=\"contenu\">\n";
+$idP = $_SESSION['session_idP'];
+if ( isset( $_SESSION['session_prenomP'] ) && isset( $_SESSION['session_prenomP'] ) )
+{
+ $nom=$_SESSION['session_prenomP'] . ' ' . $_SESSION['session_nomP'];
+}
+else
+{
+ $nom = $_SESSION['session_loginP'];
+}
+$resultat = mysql_query("SELECT * FROM AWOR_Personne WHERE idP = '".$_SESSION['session_idP']."'");
+if($resultat != false)
+{
+ $p = mysql_fetch_array($resultat);
+ echo "<form method=\"post\" action=\"profil.php\" onSubmit=\"return verifProfil()\" >\n";
+ echo "<table>\n";
+ echo "<tr><td>Methode d'authentification : </td><td>\n<select name=\"methodeAuth\">\n";
+ if($p["methodeAuth"] == "webetud") echo "<option value=\"webetud\" selected=\"selected\">Webetud</option>\n"; else echo "<option value=\"webetud\">Webetud</option>\n";
+ if($p["methodeAuth"] == "pop") echo "<option value=\"pop\" selected=\"selected\">POP3</option>\n"; else echo "<option value=\"pop\">POP3</option>\n";
+ echo "</select></td></tr>\n";
+ echo "<tr><td>Votre login :</td><td><input type=\"text\" name=\"loginP\" id=\"loginP\" value=\"".$p["loginP"]."\"/></td></tr>\n";
+ echo "<tr><td>Votre adresse mail :</td><td><input type=\"text\" name=\"courrielP\" id=\"courrielP\" value=\"".$p["courrielP"]."\"/></td></tr>\n";
+ echo "<tr><td>Votre nom :</td><td><input type=\"text\" name=\"nomP\" id=\"nomP\" value=\"".$p["nomP"]."\"/></td></tr>\n";
+ echo "<tr><td>Votre prenom :</td><td><input type=\"text\" name=\"prenomP\" id=\"prenomP\" value=\"".$p["prenomP"]."\"/></td></tr>\n";
+ echo "<tr><td colspan=\"2\"><input type=\"submit\" /></td></tr>\n";
+ echo "</table>\n";
+ echo "<input type=\"hidden\" name=\"action\" value=\"maj_profil\" />\n";
+ echo "</form>\n";
+ echo "</div>\n";
+}
+if ( isset ($errmsg) ) generate_html_div_errmsg($errmsg);
+?>
+<div id="msg"></div>
+</body>
+</html>
+