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
| <asp:LinkButton ID="lbSign" runat="server" CausesValidation="false">
<img alt="Conexion" src="/App_Themes/connection.png" class="noborder" />
</asp:LinkButton>
<asp:LoginStatus ID="lsConnexion" runat="server" CssClass="lien CONENR_Lien" LogoutAction="Redirect" LogoutPageUrl="/Default.aspx" LogoutImageUrl="/App_Themes/deconnection.png" LoginImageUrl="/App_Themes/connection.png"/>
<ajax:UpdatePanel ID="upSing" runat="server" ChildrenAsTriggers="true" UpdateMode="Always" RenderMode="Inline">
<Triggers>
<ajax:AsyncPostBackTrigger ControlID="lbSign" EventName="Click" />
</Triggers>
<ContentTemplate>
<div id="divFondSign" runat="server" style="display:none;" class="FondOpaqueGene FondOpaqueConEnr">
<div id="divDevantSign" class="DivDevantGene DivDevantConnexion">
<div id="divHabillageLogin" style="text-align:center;width:100%;">
<div id="divFormulaireLogin" class="FondInscription">
<div id="divImagehautLogin" style="text-align:left;background-image:url('/App_Themes/Inscription/barre.png');background-repeat:no-repeat;background-position:center center;width:100%;height:44px;padding-left:9px;">
<asp:ImageButton ID="btnFermerLogin" runat="server" ImageUrl="/App_Themes/Inscription/fermer.png" CausesValidation="false" />
</div>
<asp:Login ID="logIMG" runat="server" Width="100%" FailureText="Plantage">
<LayoutTemplate>
<table class="FondTable">
<tr>
<td colspan="3" align="center">Login</td>
</tr>
<tr>
<td colspan="3" align="center">Enter your user name and password to log in.</td>
</tr>
<tr>
<td class="CellGauche">User name:</td>
<td class="CellMilieu"><asp:TextBox id="UserName" runat="server" CssClass="TexteBox"></asp:TextBox></td>
<td class="CellDroite"><asp:requiredfieldvalidator id="UserNameRequired" runat="server" ControlToValidate="UserName" Text="* Un identifiant est obligatoire"></asp:requiredfieldvalidator></td>
</tr>
<tr>
<td class="CellGauche">Password:</td>
<td class="CellMilieu"><asp:TextBox id="Password" runat="server" textMode="Password" CssClass="TexteBox"></asp:TextBox></td>
<td class="CellDroite"><asp:requiredfieldvalidator id="PasswordRequired" runat="server" ControlToValidate="Password" Text="* Un mot de passe est obligatoire"></asp:requiredfieldvalidator></td>
</tr>
<tr>
<td colspan="3" style="text-align:left;padding-left:20px;"><asp:Checkbox id="RememberMe" runat="server" Text="Remember my login"></asp:Checkbox></td>
</tr>
<tr>
<td colspan="3">
<a href="/Page/PasRecov.aspx">Forgot your password?</a><br />
<a href="help.aspx">Get help logging in...</a>
</td>
</tr>
<tr>
<td colspan="3" style="text-align:center;color:Red;">
<asp:Literal id="FailureText" runat="server"></asp:Literal></td>
</tr>
<tr>
<td colspan="3" style="background-image:url('/App_Themes/Inscription/barre.png');background-repeat:no-repeat;background-position:center center;width:100%;height:44px;text-align:right;padding-right:9px;">
<asp:ImageButton id="Login" CommandName="Login" runat="server" Text="Login" ImageUrl="/App_Themes/Inscription/valider.png" />
</td>
</tr>
</table>
</LayoutTemplate>
</asp:Login>
<asp:ValidationSummary ID="valLoginForm" runat="server" DisplayMode="BulletList" ShowMessageBox="true" ShowSummary="false" ValidationGroup="valLoginForm" />
<div id="divBtnConfirm" runat="server" style="display:none;">
Vous n'avez pas valider votre isncription avec le mail reçu.<br />
Cliquez sur le bouton ci dessous pour recevoir à nouveau ce mail.<br />
<asp:ImageButton ID="btnRecevoirMailConfim" runat="server" ImageUrl="/App_Themes/Inscription/fermer.png" CausesValidation="false" />
</div>
</div>
</div>
</div>
</div>
</ContentTemplate>
</ajax:UpdatePanel> |
Partager