* Profile.aspx: * MyProfile.aspx: * AccountController.cs: renamed the Profile method to "MyProfile", could avoid issue at migrating to MVC5 * favicon.png: favicon now displays a ~"Yavsc" * BlogManager.cs: * BlogsApiController.cs: The authorisation for removing a post is now implemented at Manager's side * BlogsController.cs: Removes this odd call to a static method from the Api controller * CalendarApi.cs: * GoogleController.cs: no more json output for the calls to the Google Api * WorkFlowController.cs: sorted using clauses * Basket.cs: * Commande.cs: * EstimToPdfFormatter.cs: * Brand.cs: adds xml doc * RssFeedsFormatter.cs: modifies xml doc * TexToPdfFormatter.cs: refactoring * Global.asax.cs: Document formatting * BBCodeHelper.cs: encapsulates the url display from the BBCode in starting and closing characters : "<>" * OAuth2.cs: * SimpleJsonPostMethod.cs: using System.Runtime.Serialization.Json instead of Newtonsof.Json * App.master: updating the favicon * RegistrationPending.aspx: fixes the returnUrl usage * AssemblyInfo.aspx: better explanation for this list * Web.config: tried to migrate to MVC5 (using NuGets) * Estim.cs: * ChangePasswordModel.cs: adds xmldoc * BasketController.cs: * BlogProvidersConfigurationSection.cs: cosmetic change * GoogleErrorMessage.cs: - adds xml docs - renders ctor from JsonReaderException obsolete * MvcActionValueBinder.cs: not used * web.config: no more used, gave it up to migrate to MVC5
150 lines
4.6 KiB
Text
150 lines
4.6 KiB
Text
<%@ Page Title="Profile" Language="C#" MasterPageFile="~/Models/App.master" Inherits="System.Web.Mvc.ViewPage<Profile>" %>
|
|
|
|
<asp:Content ContentPlaceHolderID="init" ID="init1" runat="server">
|
|
<% Title = ViewData["UserName"]+" at "+ YavscHelpers.SiteName +" - profile edition" ; %>
|
|
</asp:Content>
|
|
|
|
<asp:Content ID="MainContentContent" ContentPlaceHolderID="MainContent" runat="server">
|
|
<style>
|
|
fieldset { float:left; }
|
|
table.layout { border-width: 0; }
|
|
table.layout TR TD { max-width:40%; }
|
|
</style>
|
|
<%= Html.ValidationSummary() %>
|
|
<% using(Html.BeginForm("MyProfile", "Account", FormMethod.Post, new { enctype = "multipart/form-data" })) %>
|
|
<% { %>
|
|
<fieldset><legend>Informations générales</legend>
|
|
|
|
<table class="layout">
|
|
<tr><td align="right" style="">
|
|
<%= Html.LabelFor(model => model.Name) %></td><td>
|
|
<%= Html.TextBox("Name") %>
|
|
<%= Html.ValidationMessage("Name", "*") %></td></tr>
|
|
<tr><td align="right">
|
|
<%= Html.LabelFor(model => model.Phone) %></td><td>
|
|
<%= Html.TextBox("Phone") %>
|
|
<%= Html.ValidationMessage("Phone", "*") %></td></tr>
|
|
<tr><td align="right">
|
|
<%= Html.LabelFor(model => model.Mobile) %></td><td>
|
|
<%= Html.TextBox("Mobile") %>
|
|
<%= Html.ValidationMessage("Mobile", "*") %></td></tr>
|
|
<tr><td align="right">
|
|
<%= Html.LabelFor(model => model.Address) %></td><td>
|
|
<%= Html.TextBox("Address") %>
|
|
<%= Html.ValidationMessage("Address", "*") %></td></tr>
|
|
<tr><td align="right">
|
|
<%= Html.LabelFor(model => model.CityAndState) %></td><td>
|
|
<%= Html.TextBox("CityAndState") %>
|
|
<%= Html.ValidationMessage("CityAndState", "*") %></td></tr>
|
|
<tr><td align="right">
|
|
<%= Html.LabelFor(model => model.ZipCode) %></td><td>
|
|
<%= Html.TextBox("ZipCode") %>
|
|
<%= Html.ValidationMessage("ZipCode", "*") %></td></tr>
|
|
<tr><td align="right">
|
|
<%= Html.LabelFor(model => model.Country) %></td><td>
|
|
<%= Html.TextBox("Country") %>
|
|
<%= Html.ValidationMessage("Country", "*") %></td></tr>
|
|
<tr><td align="right">
|
|
<%= Html.LabelFor(model => model.WebSite) %></td><td>
|
|
<%= Html.TextBox("WebSite") %>
|
|
<%= Html.ValidationMessage("WebSite", "*") %></td></tr>
|
|
<tr><td align="right">
|
|
<%= Html.LabelFor(model => model.BlogVisible) %></td><td>
|
|
<%= Html.CheckBox("BlogVisible") %>
|
|
<%= Html.ValidationMessage("BlogVisible", "*") %></td></tr>
|
|
<tr><td align="right">
|
|
<%= Html.LabelFor(model => model.BlogTitle) %></td><td>
|
|
<%= Html.TextBox("BlogTitle") %>
|
|
<%= Html.ValidationMessage("BlogTitle", "*") %></td></tr>
|
|
<tr><td align="right">
|
|
Avatar </td><td> <img class="avatar" src="<%=Model.avatar%>" alt=""/>
|
|
<input type="file" id="AvatarFile" name="AvatarFile"/>
|
|
<%= Html.ValidationMessage("AvatarFile", "*") %></td></tr>
|
|
<tr><td align="right">
|
|
<%= Html.LabelFor(model => model.GoogleCalendar) %>:
|
|
</td>
|
|
<td> <%= Html.Encode(Model.GoogleCalendar) %>
|
|
<%= Html.ActionLink("Choisir l'agenda","ChooseCalendar","Google",new { returnUrl= Request.Url.AbsolutePath }, new { @class="actionlink" }) %>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</fieldset>
|
|
|
|
<fieldset><legend>Informations de facturation</legend>
|
|
|
|
<table class="layout">
|
|
<tr>
|
|
<td align="right">
|
|
<%= Html.LabelFor(model => model.BankCode) %>
|
|
</td>
|
|
<td>
|
|
<%= Html.TextBox("BankCode") %>
|
|
<%= Html.ValidationMessage("BankCode", "*") %>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td align="right">
|
|
<%= Html.LabelFor(model => model.WicketCode) %></td>
|
|
<td>
|
|
<%= Html.TextBox("WicketCode") %>
|
|
<%= Html.ValidationMessage("WicketCode", "*") %>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td align="right">
|
|
<%= Html.LabelFor(model => model.AccountNumber) %></td>
|
|
<td>
|
|
<%= Html.TextBox("AccountNumber") %>
|
|
<%= Html.ValidationMessage("AccountNumber", "*") %>
|
|
</td>
|
|
</tr>
|
|
|
|
|
|
<tr>
|
|
<td align="right">
|
|
<%= Html.LabelFor(model => model.BankedKey) %></td>
|
|
<td>
|
|
<%= Html.TextBox("BankedKey") %>
|
|
<%= Html.ValidationMessage("BankedKey", "*") %>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td align="right">
|
|
<%= Html.LabelFor(model => model.BIC) %></td>
|
|
<td>
|
|
<%= Html.TextBox("BIC") %>
|
|
<%= Html.ValidationMessage("BIC", "*") %>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td align="right">
|
|
<%= Html.LabelFor(model => model.IBAN) %></td>
|
|
<td>
|
|
<%= Html.TextBox("IBAN") %>
|
|
<%= Html.ValidationMessage("IBAN", "*") %>
|
|
</td>
|
|
</tr>
|
|
|
|
|
|
</table>
|
|
|
|
</fieldset>
|
|
|
|
<input type="submit"/>
|
|
<% } %>
|
|
<aside>
|
|
<%= Html.ActionLink("Changer de mot de passe","ChangePassword", "Account",null, new { @class="actionlink" })%>
|
|
<%= Html.ActionLink("Désincription","Unregister", "Account",null, new { @class="actionlink" })%>
|
|
</aside>
|
|
<aside>
|
|
<% if (Roles.IsUserInRole((string)ViewData ["UserName"],"Admin")) { %>
|
|
This user is Admin.
|
|
<% } %>
|
|
HasBankAccount:<%= Model.HasBankAccount %>, IsBillable:<%=Model.IsBillable%>
|
|
</aside>
|
|
|
|
</asp:Content>
|
|
|