dead code + css
authorx2000habouzit <x2000habouzit>
Fri, 7 Jan 2005 15:11:48 +0000 (15:11 +0000)
committerx2000habouzit <x2000habouzit>
Fri, 7 Jan 2005 15:11:48 +0000 (15:11 +0000)
css/style.css
install.d/profile_form.inc.php [deleted file]

index 65ff1d6..825a890 100644 (file)
@@ -38,3 +38,4 @@ table.banana_msg table { border: 0px; padding: 0px; margin: 0px; width: 100%; }
 /** MISC **/
 
 div.center { text-align: center; padding: 1em; }
+p.error { color: red; background: inherit; }
diff --git a/install.d/profile_form.inc.php b/install.d/profile_form.inc.php
deleted file mode 100644 (file)
index b700b96..0000000
+++ /dev/null
@@ -1,98 +0,0 @@
-<?php
-/********************************************************************************
-* install.d/profile_form.inc.php : HTML form
-* --------------------------------
-*
-* This file is part of the banana distribution
-* Copyright: See COPYING files that comes with this distribution
-********************************************************************************/
-?>
-<div class="title">
-  <?php echo _b_('Bienvenue sur Banana !'); ?>
-</div>
-
-<form action="<?php echo $_SERVER['REQUEST_URI']?>" method="POST">
-  <table class="bicol" cellpadding="2" cellspacing="0" 
-  summary="Profile">
-    <tr class="pair">
-      <th colspan="2">
-        <?php echo _b_('Définis tes paramètres'); ?>
-      </th>
-    </tr>
-    <tr class="impair">
-      <td>
-        <?php echo _b_('Nom (par exemple Jean Dupont)'; ?>
-      </td>
-      <td>
-        <input type="text" name="profile_name" value="">
-      </td>
-    </tr>
-    <tr class="pair">
-      <td>
-        <?php echo _b_('Adresse mail'); ?>
-      </td>
-      <td>
-        <input type="text" name="profile_mail" value="">
-      </td>
-    </tr>
-    <tr class="impair">
-      <td>
-        <?php echo _b_('Organisation'); ?>
-      </td>
-      <td>
-        <input type="text" name="profile_org" value="">
-      </td>
-    </tr>
-    <tr class="pair">
-      <td>
-        <?php echo _b_('Signature'); ?>
-      </td>
-      <td>
-        <textarea name="profile_sig" rows="7" cols="50"></textarea>
-      </td>
-    </tr>
-    <tr class="pair">
-      <th colspan="2">
-        <?php echo _b_('Affichage'); ?>
-      </th>
-    </tr>
-    <tr class="impair">
-      <td colspan="2">
-        <input type="radio" name="displaytype" value="0" checked> 
-          <?php echo _b_('Tous les messages'); ?>
-      </td>
-    </tr>
-    <tr class="pair">
-      <td colspan="2">
-        <input type="radio" name="displaytype" value="1"> 
-          <?php echo _b_('Seulement les fils de discussion comportant des messages non lus'); ?>
-      </td>
-    </tr>
-    <tr class="pair">
-      <th colspan="2">
-        <?php echo _b_('Authentification sur le serveur NNTP'); ?>
-      </th>
-    </tr>
-    <tr class="impair">
-      <td>
-        <?php echo _b_('Login (laisser anonyme pour un login en anonyme)'); ?>
-      </td>
-      <td>
-        <input type="text" name="profile_login" value="anonymous">
-      </td>
-    </tr>
-    <tr class="pair">
-      <td>
-        <?php echo _b_('Mot de passe'); ?>
-      </td>
-      <td>
-        <input type="password" name="profile_passwd" value="">
-      </td>
-    </tr>
-    <tr class="impair">
-      <td colspan="2" class="bouton">
-        <input type="submit" name="action" value="OK">
-      </td>
-    </tr>
-  </table>
-</form>