--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/web/cda-perso.html Mon Mar 17 00:27:14 2008 -0400
@@ -0,0 +1,106 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
+ <head>
+ <title>Création de personnage</title>
+ </head>
+
+ <body>
+ <h1>Création de personnage</h1>
+
+ <h2>Description</h2>
+ <form method="post" action="...">
+ <ul>
+ <li><label for="player">Joueur : </label>
+ <input type="text" id="player"/></li>
+ <li><label for="name">Personnage : </label>
+ <input type="text" id="name"/></li>
+ <li><label for="xp">XP : </label>
+ <input type="text" id="xp" value="0" size="6" readonly="readonly"/></li>
+ </ul>
+ </form>
+ <h2 id="profile">Profile</h2>
+ <form method="post" action="...">
+ <ul>
+ <li><label for="pu">Puissance : </label>
+ <input type="text" id="pu" readonly="readonly" size="3" value="0"/>
+ <input type="button" value="+" id="pu_inc"/>
+ <input type="button" value="-" id="pu_dec"/>
+ </li>
+ <li><label for="re">Résistance : </label>
+ <input type="text" id="re" readonly="readonly" size="3" value="0"/>
+ <input type="button" value="+" id="re_inc"/>
+ <input type="button" value="-" id="re_dec"/>
+ </li>
+ <li><label for="ma">Manœuvre : </label>
+ <input type="text" id="ma" readonly="readonly" size="3" value="0"/>
+ <input type="button" value="+" id="ma_inc"/>
+ <input type="button" value="-" id="ma_dec"/>
+ </li>
+ <li><label for="pr">Précision : </label>
+ <input type="text" id="pr" readonly="readonly" size="3" value="0"/>
+ <input type="button" value="+" id="pr_inc"/>
+ <input type="button" value="-" id="pr_dec"/>
+ </li>
+ <li><label for="ex">Expression : </label>
+ <input type="text" id="ex" readonly="readonly" size="3" value="0"/>
+ <input type="button" value="+" id="ex_inc"/>
+ <input type="button" value="-" id="ex_dec"/>
+ </li>
+ <li><label for="pe">Perception : </label>
+ <input type="text" id="pe" readonly="readonly" size="3" value="0"/>
+ <input type="button" value="+" id="pe_inc"/>
+ <input type="button" value="-" id="pe_dec"/>
+ </li>
+ </ul>
+ </form>
+
+ <h2 id="physic" class="aspect">Aspect Physique</h2>
+ <form action="..." method="post">
+ <p><label for="aspect">Aspect : </label>
+ <input type="hidden" id="aspect" value="ph"/>
+ <input type="text" id="value" size="5" value="0" readonly="readonly"/>
+ <label for="bonus"> + </label>
+ <input type="text" id="bonus" size="5" value="0"/>
+ <label for="total"> = </label>
+ <input type="text" id="total" size="5" value="0" readonly="readonly"/><br/>
+ <label for="xp">XP : </label>
+ <input type="text" id="xp" size="5" value="0" readonly="readonly"/>
+ </p>
+ </form>
+ <table>
+ <form>1
+ <thead><tr>
+ <th>Compétences</th>
+ <th>Niveau</th>
+ <th>CA</th>
+ <th>XP</th>
+ <th></th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td><input type="text" id="comp:desc:1"/></td>
+ <td>
+ <input type="text" id="comp:nc:1" size="5" value="0" readonly/>
+ <input type="button" id="comp:inc:1" value="+"/>
+ <input type="button" id="comp:dec:1" value="-"/>
+ </td>
+ <td>
+ <input type="text" id="comp:ca:1" size="5" value="0" readonly/>
+ </td>
+ <td><input type="text" id="comp:xp:1" size="5" value="0"/></td>
+ <td><input type="button" id="comp:add:1" value="Ajouter"/></td>
+ </tr>
+ </table>
+ </form>
+
+ <hr>
+ <address><a href="mailto:veneur@tzone.org">le Veneur Gris</a></address>
+<!-- Created: Sat Mar 15 21:00:00 EDT 2008 -->
+<!-- hhmts start -->
+Last modified: Sun Mar 16 11:51:12 EDT 2008
+<!-- hhmts end -->
+ </body>
+</html>