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 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
|
<?PHP
if(@$_SESSION['connect']=="on")
{
?>
<script type="text/javascript">charger_page("index.php?p=actu");</script>
<?php
}
?>
<style>
div.formulaire
{
margin:0 auto;
width:600px;
background-color:#f9e8f9;
}
.formulaire h1
{
background:url("./img/header_profile_f.png") no-repeat;
width:600px;
height:60px;
color:white;
font-size:14px;
text-align:center;
padding-left:10px;
padding-top:5px;
}
td.result
{
width:500px;
font-weight:bold;
text-align:left;
}
td.info
{
width:200px;
background-color:#FCF;
color:#609;
text-align:left;
border-bottom:1px dotted white;
}
span#result_name
{
border:1px solid black;
width:100px;
height:20px;
background-color:blue;
float:right;
}
input.format
{
background-color:#FCF;
border:1px solid #8a0068;
}
</style>
<div class="formulaire">
<h1>Fiche d'inscription </h1>
<FORM name="formulaire" ACTION="index.php?p=valid_inscription" METHOD="POST" onsubmit="return validInscription();">
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="10">
<tr>
<td class="entete"> Pseudo <span class=obli>*</span></td>
<td align=left>
<span> <input type="text" size="20" maxlength="20" id="pseudo" name="pseudo" value='' class="format" ></span>
<!-- <span id="loader_pseudo" style="display:none"><img src="./img/ico/loader2.gif" alt="loader" /></span> -->
</td>
<td class="result" id="result_name">
</td>
</tr>
<tr>
<td class="entete"> Passe <span class=obli>*</span></td>
<td><p align=left> <input type="password" size="20" maxlength="20" id="pass1" name="pass1" value='' class="format"></p></td>
</tr>
<tr>
<td class="entete"> Confirmation passe <span class=obli>*</span></td>
<td><p align=left> <input type="password" size="20" maxlength="20" id="pass2" name="pass2" value='' class="format"></p></td>
</tr>
<tr>
<td class="entete"> Age <span class=obli>*</span></td>
<td align=left><span> <input type="text" size="20" maxlength="2" id="age" name="age" value='18' class="format"></span> <span id="loader"style="display:none"><img src="./img/ico/loader2.gif" alt="loader" /></span></td>
<td class="result" id="result_age"></td>
</tr>
<tr>
<td valign=top class="entete"> Sexe <span class=obli>*</span></td>
<td>
<table width=100%>
<tr>
<td><p align=left><input type="radio" id="sexe_m" name="sexe" value="M"> <img src="./img/ico/user-homme.png" /><span class=mef>Homme</span></p></td>
<td><p align=left><input type="radio" id="sexe_f" name="sexe" value="F"> <img src="./img/ico/user-femme.png" /><span class=mef>Femme</span></p></td>
</tr>
</table>
</td>
<td class="result" id="result_sex"></td>
</tr>
<tr>
<td colspan="2">
<p align=left>
<input type="checkbox" name="id_47" id="id_47" value="accepte">
<span class=mef>
J'ai pris connaissance des règles de fonctionnement et je m'engage à les respecter.
</span>
</p>
</td>
<td class="result" id="result_charte"></td>
</tr>
<tr>
<td colspan=2> </td>
</tr>
<tr>
<td colspan=2>
<table width=100%>
<tr>
<td align=left width=50%><input style="border:1px solid #ff00c6; background-color:#8a0068; color:#fcf;" type="submit" name="valider" value="Valider votre inscription" ></td>
</tr>
</table>
</td>
</tr>
<tr>
<td colspan=2 align=left><span class=obli>Les champs sont tous obligatoires</span></td>
</tr>
</table>
</form>
</div> |
Partager