mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-09-23 12:53:33 +08:00
Replaced fieldsets with div tags on register and changepassword ascx files.
--HG-- branch : dev
This commit is contained in:
@@ -6,23 +6,23 @@
|
|||||||
<% using (Html.BeginFormAntiForgeryPost()) { %>
|
<% using (Html.BeginFormAntiForgeryPost()) { %>
|
||||||
<fieldset>
|
<fieldset>
|
||||||
<legend><%=_Encoded("Account Information")%></legend>
|
<legend><%=_Encoded("Account Information")%></legend>
|
||||||
<fieldset>
|
<div>
|
||||||
<label for="currentPassword"><%=_Encoded("Current password:")%></label>
|
<label for="currentPassword"><%=_Encoded("Current password:")%></label>
|
||||||
<%=Html.Password("currentPassword") %>
|
<%=Html.Password("currentPassword") %>
|
||||||
<%=Html.ValidationMessage("currentPassword") %>
|
<%=Html.ValidationMessage("currentPassword") %>
|
||||||
</fieldset>
|
</div>
|
||||||
<fieldset>
|
<div>
|
||||||
<label for="newPassword"><%=_Encoded("New password:")%></label>
|
<label for="newPassword"><%=_Encoded("New password:")%></label>
|
||||||
<%= Html.Password("newPassword") %>
|
<%= Html.Password("newPassword") %>
|
||||||
<%= Html.ValidationMessage("newPassword") %>
|
<%= Html.ValidationMessage("newPassword") %>
|
||||||
</fieldset>
|
</div>
|
||||||
<fieldset>
|
<div>
|
||||||
<label for="confirmPassword"><%=_Encoded("Confirm new password:")%></label>
|
<label for="confirmPassword"><%=_Encoded("Confirm new password:")%></label>
|
||||||
<%= Html.Password("confirmPassword") %>
|
<%= Html.Password("confirmPassword") %>
|
||||||
<%= Html.ValidationMessage("confirmPassword") %>
|
<%= Html.ValidationMessage("confirmPassword") %>
|
||||||
</fieldset>
|
</div>
|
||||||
<fieldset>
|
<div>
|
||||||
<input type="submit" value="<%=_Encoded("Change Password") %>" />
|
<input type="submit" value="<%=_Encoded("Change Password") %>" />
|
||||||
</fieldset>
|
</div>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
<% } %>
|
<% } %>
|
@@ -6,28 +6,28 @@
|
|||||||
<% using (Html.BeginFormAntiForgeryPost()) { %>
|
<% using (Html.BeginFormAntiForgeryPost()) { %>
|
||||||
<fieldset>
|
<fieldset>
|
||||||
<legend><%=_Encoded("Account Information")%></legend>
|
<legend><%=_Encoded("Account Information")%></legend>
|
||||||
<fieldset>
|
<div>
|
||||||
<label for="username"><%=_Encoded("Username:")%></label>
|
<label for="username"><%=_Encoded("Username:")%></label>
|
||||||
<%= Html.TextBox("username") %>
|
<%= Html.TextBox("username") %>
|
||||||
<%= Html.ValidationMessage("username") %>
|
<%= Html.ValidationMessage("username") %>
|
||||||
</fieldset>
|
</div>
|
||||||
<fieldset>
|
<div>
|
||||||
<label for="email"><%=_Encoded("Email:")%></label>
|
<label for="email"><%=_Encoded("Email:")%></label>
|
||||||
<%= Html.TextBox("email") %>
|
<%= Html.TextBox("email") %>
|
||||||
<%= Html.ValidationMessage("email") %>
|
<%= Html.ValidationMessage("email") %>
|
||||||
</fieldset>
|
</div>
|
||||||
<fieldset>
|
<div>
|
||||||
<label for="password"><%=_Encoded("Password:")%></label>
|
<label for="password"><%=_Encoded("Password:")%></label>
|
||||||
<%= Html.Password("password") %>
|
<%= Html.Password("password") %>
|
||||||
<%= Html.ValidationMessage("password") %>
|
<%= Html.ValidationMessage("password") %>
|
||||||
</fieldset>
|
</div>
|
||||||
<fieldset>
|
<div>
|
||||||
<label for="confirmPassword"><%=_Encoded("Confirm password:")%></label>
|
<label for="confirmPassword"><%=_Encoded("Confirm password:")%></label>
|
||||||
<%= Html.Password("confirmPassword") %>
|
<%= Html.Password("confirmPassword") %>
|
||||||
<%= Html.ValidationMessage("confirmPassword") %>
|
<%= Html.ValidationMessage("confirmPassword") %>
|
||||||
</fieldset>
|
</div>
|
||||||
<fieldset>
|
<div>
|
||||||
<input type="submit" value="<%=_Encoded("Register") %>" />
|
<input type="submit" value="<%=_Encoded("Register") %>" />
|
||||||
</fieldset>
|
</div>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
<% } %>
|
<% } %>
|
Reference in New Issue
Block a user