Browse Source

little hiccup fixed

master
Milad Karbasizadeh 11 years ago
parent
commit
64165f42fe
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      Sevomin.WebFrontend.Controllers/AccountController.cs
  2. +1
    -1
      Sevomin.WebFrontend/Sevomin.WebFrontend.csproj

+ 1
- 1
Sevomin.WebFrontend.Controllers/AccountController.cs View File

@ -167,7 +167,7 @@ namespace Sevomin.WebFrontend.Controllers
[HttpPost] [HttpPost]
[ValidateAntiForgeryToken] [ValidateAntiForgeryToken]
public ActionResult Forgot(ForgotPasswordViewModel model)
public async Task<ActionResult> Forgot(ForgotPasswordViewModel model)
{ {
var user = UserRepository.Current.Find(model.Email); var user = UserRepository.Current.Find(model.Email);
if (user == null) if (user == null)


+ 1
- 1
Sevomin.WebFrontend/Sevomin.WebFrontend.csproj View File

@ -128,7 +128,7 @@
<Content Include="App_Data\emails\password-reset.html" /> <Content Include="App_Data\emails\password-reset.html" />
<Content Include="App_Data\emails\new-password.html" /> <Content Include="App_Data\emails\new-password.html" />
<Content Include="App_Data\emails\email-confirmation.html" /> <Content Include="App_Data\emails\email-confirmation.html" />
<Content Include="app_offline.html" />
<Content Include="app_offline-.htm" />
<Content Include="Content\bootstrap-theme.css" /> <Content Include="Content\bootstrap-theme.css" />
<Content Include="Content\bootstrap-theme.min.css" /> <Content Include="Content\bootstrap-theme.min.css" />
<Content Include="Content\bootstrap.css" /> <Content Include="Content\bootstrap.css" />


Loading…
Cancel
Save