Skip to content

Commit

Permalink
First commit
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeyNovais committed Sep 24, 2012
0 parents commit 765bdd5
Show file tree
Hide file tree
Showing 103 changed files with 17,868 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Cabinet Services Jennie Huard.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@

Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "Cabinet Services Jennie Huard", "Cabinet Services Jennie Huard\Cabinet Services Jennie Huard.vbproj", "{2B3AC8D4-5146-4C32-8E79-A93F913F09F0}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{2B3AC8D4-5146-4C32-8E79-A93F913F09F0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{2B3AC8D4-5146-4C32-8E79-A93F913F09F0}.Debug|Any CPU.Build.0 = Debug|Any CPU
{2B3AC8D4-5146-4C32-8E79-A93F913F09F0}.Release|Any CPU.ActiveCfg = Release|Any CPU
{2B3AC8D4-5146-4C32-8E79-A93F913F09F0}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
Binary file added Cabinet Services Jennie Huard.suo
Binary file not shown.
13 changes: 13 additions & 0 deletions Cabinet Services Jennie Huard/APropos.aspx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<%@ Page Title="Qui sommes-nous" Language="vb" MasterPageFile="~/Site.Master" AutoEventWireup="false"
CodeBehind="APropos.aspx.vb" Inherits="Cabinet_Services_Jennie_Huard.About" %>

<asp:Content ID="HeaderContent" runat="server" ContentPlaceHolderID="HeadContent">
</asp:Content>
<asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent">
<h2>
À propos de
</h2>
<p>
Placez le contenu ici.
</p>
</asp:Content>
16 changes: 16 additions & 0 deletions Cabinet Services Jennie Huard/APropos.aspx.designer.vb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions Cabinet Services Jennie Huard/APropos.aspx.vb
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
Public Class Apropos
Inherits System.Web.UI.Page

Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load

End Sub

End Class
60 changes: 60 additions & 0 deletions Cabinet Services Jennie Huard/Account/ChangePassword.aspx
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
<%@ Page Title="Modifier le mot de passe" Language="vb" MasterPageFile="~/Site.Master" AutoEventWireup="false"
CodeBehind="ChangePassword.aspx.vb" Inherits="Cabinet_Services_Jennie_Huard.ChangePassword" %>

<asp:Content ID="HeaderContent" runat="server" ContentPlaceHolderID="HeadContent">
</asp:Content>
<asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent">
<h2>
Modifier le mot de passe
</h2>
<p>
Utilisez le formulaire ci-dessous pour changer votre mot de passe.
</p>
<p>
Les nouveaux mots de passe doivent comporter au minimum <%= Membership.MinRequiredPasswordLength %> caractères.
</p>
<asp:ChangePassword ID="ChangeUserPassword" runat="server" CancelDestinationPageUrl="~/" EnableViewState="false" RenderOuterTable="false"
SuccessPageUrl="ChangePasswordSuccess.aspx">
<ChangePasswordTemplate>
<span class="failureNotification">
<asp:Literal ID="FailureText" runat="server"></asp:Literal>
</span>
<asp:ValidationSummary ID="ChangeUserPasswordValidationSummary" runat="server" CssClass="failureNotification"
ValidationGroup="ChangeUserPasswordValidationGroup"/>
<div class="accountInfo">
<fieldset class="changePassword">
<legend>Informations de compte</legend>
<p>
<asp:Label ID="CurrentPasswordLabel" runat="server" AssociatedControlID="CurrentPassword">Ancien mot de passe :</asp:Label>
<asp:TextBox ID="CurrentPassword" runat="server" CssClass="passwordEntry" TextMode="Password"></asp:TextBox>
<asp:RequiredFieldValidator ID="CurrentPasswordRequired" runat="server" ControlToValidate="CurrentPassword"
CssClass="failureNotification" ErrorMessage="Un mot de passe est requis." ToolTip="L'ancien mot de passe est requis."
ValidationGroup="ChangeUserPasswordValidationGroup">*</asp:RequiredFieldValidator>
</p>
<p>
<asp:Label ID="NewPasswordLabel" runat="server" AssociatedControlID="NewPassword">Nouveau mot de passe :</asp:Label>
<asp:TextBox ID="NewPassword" runat="server" CssClass="passwordEntry" TextMode="Password"></asp:TextBox>
<asp:RequiredFieldValidator ID="NewPasswordRequired" runat="server" ControlToValidate="NewPassword"
CssClass="failureNotification" ErrorMessage="Un nouveau mot de passe est requis." ToolTip="Un nouveau mot de passe est requis."
ValidationGroup="ChangeUserPasswordValidationGroup">*</asp:RequiredFieldValidator>
</p>
<p>
<asp:Label ID="ConfirmNewPasswordLabel" runat="server" AssociatedControlID="ConfirmNewPassword">Confirmer le nouveau mot de passe :</asp:Label>
<asp:TextBox ID="ConfirmNewPassword" runat="server" CssClass="passwordEntry" TextMode="Password"></asp:TextBox>
<asp:RequiredFieldValidator ID="ConfirmNewPasswordRequired" runat="server" ControlToValidate="ConfirmNewPassword"
CssClass="failureNotification" Display="Dynamic" ErrorMessage="La confirmation du nouveau mot de passe est requise."
ToolTip="La confirmation du nouveau mot de passe est requise." ValidationGroup="ChangeUserPasswordValidationGroup">*</asp:RequiredFieldValidator>
<asp:CompareValidator ID="NewPasswordCompare" runat="server" ControlToCompare="NewPassword" ControlToValidate="ConfirmNewPassword"
CssClass="failureNotification" Display="Dynamic" ErrorMessage="La valeur de Confirmer le nouveau mot de passe doit correspondre à l'entrée Nouveau mot de passe."
ValidationGroup="ChangeUserPasswordValidationGroup">*</asp:CompareValidator>
</p>
</fieldset>
<p class="submitButton">
<asp:Button ID="CancelPushButton" runat="server" CausesValidation="False" CommandName="Cancel" Text="Annuler"/>
<asp:Button ID="ChangePasswordPushButton" runat="server" CommandName="ChangePassword" Text="Modifier le mot de passe"
ValidationGroup="ChangeUserPasswordValidationGroup"/>
</p>
</div>
</ChangePasswordTemplate>
</asp:ChangePassword>
</asp:Content>

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions Cabinet Services Jennie Huard/Account/ChangePassword.aspx.vb
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
Public Class ChangePassword
Inherits System.Web.UI.Page

Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load

End Sub

End Class
13 changes: 13 additions & 0 deletions Cabinet Services Jennie Huard/Account/ChangePasswordSuccess.aspx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<%@ Page Title="Modifier le mot de passe" Language="vb" MasterPageFile="~/Site.Master" AutoEventWireup="false"
CodeBehind="ChangePasswordSuccess.aspx.vb" Inherits="Cabinet_Services_Jennie_Huard.ChangePasswordSuccess" %>

<asp:Content ID="HeaderContent" runat="server" ContentPlaceHolderID="HeadContent">
</asp:Content>
<asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent">
<h2>
Modifier le mot de passe
</h2>
<p>
Votre mot de passe a été changé.
</p>
</asp:Content>

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
Public Class ChangePasswordSuccess
Inherits System.Web.UI.Page

Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load

End Sub

End Class
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<%@ Page Title="" Language="vb" AutoEventWireup="false" MasterPageFile="~/Site.Master" CodeBehind="GestionAssurances.aspx.vb" Inherits="Cabinet_Services_Jennie_Huard.GestionAssurances" %>
<asp:Content ID="Content1" ContentPlaceHolderID="HeadContent" runat="server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
</asp:Content>

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
Public Class GestionAssurances
Inherits System.Web.UI.Page

Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load

End Sub

End Class
23 changes: 23 additions & 0 deletions Cabinet Services Jennie Huard/Account/Client/MesAssurances.aspx
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<%@ Page Title="" Language="vb" AutoEventWireup="false" MasterPageFile="~/Site.Master" CodeBehind="MesAssurances.aspx.vb" Inherits="Cabinet_Services_Jennie_Huard.MesAssurances" %>
<asp:Content ID="Content1" ContentPlaceHolderID="HeadContent" runat="server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
Mes assurances:
<table>
<tr>
<th>type Assurance</th>
<th></th>
<th>Vos Assurances</th>
</tr>
<tr>
<td>Vie</td>
<td><img src="/Image/desjardin.png" alt="logo desjardin"/> </td>
<td>Desjardins and stuff</td>
</tr>
<tr>
<td>Automobile</td>
<td><img src="/Image/caa.jpg"</td>
<td>CAA Québec and stuff</td>
</tr>
</table>
</asp:Content>

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
Public Class MesAssurances
Inherits System.Web.UI.Page

Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load

End Sub

End Class
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
<%@ Page Title="" Language="vb" AutoEventWireup="false" MasterPageFile="~/Site.Master" CodeBehind="ModifierDonneesPersos.aspx.vb" Inherits="Cabinet_Services_Jennie_Huard.ModifierDonneesPersos" %>
<asp:Content ID="Content1" ContentPlaceHolderID="HeadContent" runat="server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
Informations relatives à votre compte
<br />
<table>
<tr>
<td>Nom:</td>
<td><asp:TextBox ID="txtNom" runat="server" Text="VotreNom" /></td>
</tr>
<tr>
<td>Prenom:</td>
<td><asp:TextBox ID="txtPrenom" runat="server" Text="VotrePrenom" /></td>
</tr>
<tr>
<td>Date de naissance:</td>
<td><asp:TextBox ID="txtDateNaiss" runat="server" Text="VotreNom" /></td>
</tr>
<tr>
<td>Satut:</td>
<td>
<asp:DropDownList ID="ddStatut" runat="server">
<asp:ListItem>Individuel</asp:ListItem>
<asp:ListItem>Corporatif</asp:ListItem>
</asp:DropDownList>
</td>
</tr>
<tr>
<td>Adresse:</td>
<td><asp:TextBox ID="txtAdresse" runat="server" Text="VotreAdresse" /></td>
</tr>
<tr>
<td>Code Postal:</td>
<td><asp:TextBox ID="txtCodePostal" runat="server" Text="VotreCodePostal" /></td>
</tr>
<tr>
<td>Ville:</td>
<td><asp:TextBox ID="txtVille" runat="server" Text="VotreVille" /></td>
</tr>
<tr>
<td>Pays:</td>
<td><asp:TextBox ID="txtPays" runat="server" Text="VotrePays" /></td>
</tr>
<tr>
<td>Téléphone:</td>
<td><asp:TextBox ID="txtTel" runat="server" Text="VotreTéléphone" /></td>
</tr>
</table>
<br />


<asp:CheckBox ID="cbConfirmer" runat="server"
Text="Je confirme que les information présente sont nettement satisfesante" />
<br />
<asp:Button ID="btnModifier" runat="server"
Text="Modifier les information du profil" />


</asp:Content>
Loading

0 comments on commit 765bdd5

Please sign in to comment.