- `TagHelper`s now auto-fill enums. Updated files to reflect new auto-filling enum changes.
This commit is contained in:
N. Taylor Mullen 2015-10-29 16:24:56 -07:00
parent d8697fe985
commit 978e2bb474
11 changed files with 11 additions and 11 deletions

View File

@ -8,7 +8,7 @@
<form asp-controller="Account" asp-action="ExternalLoginConfirmation" asp-route-returnurl="@ViewBag.ReturnUrl" method="post" class="form-horizontal" role="form"> <form asp-controller="Account" asp-action="ExternalLoginConfirmation" asp-route-returnurl="@ViewBag.ReturnUrl" method="post" class="form-horizontal" role="form">
<h4>Association Form</h4> <h4>Association Form</h4>
<hr /> <hr />
<div asp-validation-summary="ValidationSummary.All" class="text-danger"></div> <div asp-validation-summary="All" class="text-danger"></div>
<p class="text-info"> <p class="text-info">
You've successfully authenticated with <strong>@ViewBag.LoginProvider</strong>. You've successfully authenticated with <strong>@ViewBag.LoginProvider</strong>.

View File

@ -8,7 +8,7 @@
<form asp-controller="Account" asp-action="ForgotPassword" method="post" class="form-horizontal" role="form"> <form asp-controller="Account" asp-action="ForgotPassword" method="post" class="form-horizontal" role="form">
<h4>Enter your email.</h4> <h4>Enter your email.</h4>
<hr /> <hr />
<div asp-validation-summary="ValidationSummary.All" class="text-danger"></div> <div asp-validation-summary="All" class="text-danger"></div>
<div class="form-group"> <div class="form-group">
<label asp-for="Email" class="col-md-2 control-label"></label> <label asp-for="Email" class="col-md-2 control-label"></label>
<div class="col-md-10"> <div class="col-md-10">

View File

@ -11,7 +11,7 @@
<form asp-controller="Account" asp-action="Login" asp-route-returnurl="@ViewBag.ReturnUrl" method="post" class="form-horizontal" role="form"> <form asp-controller="Account" asp-action="Login" asp-route-returnurl="@ViewBag.ReturnUrl" method="post" class="form-horizontal" role="form">
<h4>Use a local account to log in.</h4> <h4>Use a local account to log in.</h4>
<hr /> <hr />
<div asp-validation-summary="ValidationSummary.All" class="text-danger"></div> <div asp-validation-summary="All" class="text-danger"></div>
<div class="form-group"> <div class="form-group">
<label asp-for="Email" class="col-md-2 control-label"></label> <label asp-for="Email" class="col-md-2 control-label"></label>
<div class="col-md-10"> <div class="col-md-10">

View File

@ -8,7 +8,7 @@
<form asp-controller="Account" asp-action="Register" method="post" class="form-horizontal" role="form"> <form asp-controller="Account" asp-action="Register" method="post" class="form-horizontal" role="form">
<h4>Create a new account.</h4> <h4>Create a new account.</h4>
<hr /> <hr />
<div asp-validation-summary="ValidationSummary.All" class="text-danger"></div> <div asp-validation-summary="All" class="text-danger"></div>
<div class="form-group"> <div class="form-group">
<label asp-for="Email" class="col-md-2 control-label"></label> <label asp-for="Email" class="col-md-2 control-label"></label>
<div class="col-md-10"> <div class="col-md-10">

View File

@ -8,7 +8,7 @@
<form asp-controller="Account" asp-action="ResetPassword" method="post" class="form-horizontal" role="form"> <form asp-controller="Account" asp-action="ResetPassword" method="post" class="form-horizontal" role="form">
<h4>Reset your password.</h4> <h4>Reset your password.</h4>
<hr /> <hr />
<div asp-validation-summary="ValidationSummary.All" class="text-danger"></div> <div asp-validation-summary="All" class="text-danger"></div>
<input asp-for="Code" type="hidden" /> <input asp-for="Code" type="hidden" />
<div class="form-group"> <div class="form-group">
<label asp-for="Email" class="col-md-2 control-label"></label> <label asp-for="Email" class="col-md-2 control-label"></label>

View File

@ -6,7 +6,7 @@
<h2>@ViewBag.Title.</h2> <h2>@ViewBag.Title.</h2>
<form asp-controller="Account" asp-action="VerifyCode" asp-route-returnurl="@Model.ReturnUrl" method="post" class="form-horizontal" role="form"> <form asp-controller="Account" asp-action="VerifyCode" asp-route-returnurl="@Model.ReturnUrl" method="post" class="form-horizontal" role="form">
<div asp-validation-summary="ValidationSummary.All" class="text-danger"></div> <div asp-validation-summary="All" class="text-danger"></div>
<input asp-for="Provider" type="hidden" /> <input asp-for="Provider" type="hidden" />
<input asp-for="RememberMe" type="hidden" /> <input asp-for="RememberMe" type="hidden" />
<h4>Enter verification code</h4> <h4>Enter verification code</h4>

View File

@ -11,7 +11,7 @@
<form asp-antiforgery="true"> <form asp-antiforgery="true">
<h2>Address And Payment</h2> <h2>Address And Payment</h2>
<hr /> <hr />
<div asp-validation-summary="ValidationSummary.All" class="text-danger"></div> <div asp-validation-summary="All" class="text-danger"></div>
<fieldset> <fieldset>
<legend>Shipping Information</legend> <legend>Shipping Information</legend>

View File

@ -7,7 +7,7 @@
<form asp-controller="Manage" asp-action="AddPhoneNumber" method="post" class="form-horizontal" role="form"> <form asp-controller="Manage" asp-action="AddPhoneNumber" method="post" class="form-horizontal" role="form">
<h4>Add a phone number.</h4> <h4>Add a phone number.</h4>
<hr /> <hr />
<div asp-validation-summary="ValidationSummary.All" class="text-danger"></div> <div asp-validation-summary="All" class="text-danger"></div>
<div class="form-group"> <div class="form-group">
<label asp-for="Number" class="col-md-2 control-label"></label> <label asp-for="Number" class="col-md-2 control-label"></label>
<div class="col-md-10"> <div class="col-md-10">

View File

@ -8,7 +8,7 @@
<form asp-controller="Manage" asp-action="ChangePassword" method="post" class="form-horizontal" role="form"> <form asp-controller="Manage" asp-action="ChangePassword" method="post" class="form-horizontal" role="form">
<h4>Change Password Form</h4> <h4>Change Password Form</h4>
<hr /> <hr />
<div asp-validation-summary="ValidationSummary.All" class="text-danger"></div> <div asp-validation-summary="All" class="text-danger"></div>
<div class="form-group"> <div class="form-group">
<label asp-for="OldPassword" class="col-md-2 control-label"></label> <label asp-for="OldPassword" class="col-md-2 control-label"></label>
<div class="col-md-10"> <div class="col-md-10">

View File

@ -11,7 +11,7 @@
<form asp-controller="Manage" asp-action="SetPassword" method="post" class="form-horizontal" role="form"> <form asp-controller="Manage" asp-action="SetPassword" method="post" class="form-horizontal" role="form">
<h4>Set your password</h4> <h4>Set your password</h4>
<hr /> <hr />
<div asp-validation-summary="ValidationSummary.All" class="text-danger"></div> <div asp-validation-summary="All" class="text-danger"></div>
<div class="form-group"> <div class="form-group">
<label asp-for="NewPassword" class="col-md-2 control-label"></label> <label asp-for="NewPassword" class="col-md-2 control-label"></label>
<div class="col-md-10"> <div class="col-md-10">

View File

@ -14,7 +14,7 @@
Please change this code to register an SMS service in IdentityConfig to send a text message. Please change this code to register an SMS service in IdentityConfig to send a text message.
</p> </p>
<hr /> <hr />
<div asp-validation-summary="ValidationSummary.All" class="text-danger"></div> <div asp-validation-summary="All" class="text-danger"></div>
<div class="form-group"> <div class="form-group">
<label asp-for="Code" class="col-md-2 control-label"></label> <label asp-for="Code" class="col-md-2 control-label"></label>
<div class="col-md-10"> <div class="col-md-10">