Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OaaS/HeuristicLab.Services.Optimization.Web/Views/Account/LogOn.cshtml @ 9220

Last change on this file since 9220 was 9215, checked in by fschoepp, 12 years ago

#1888:

  • Janitor is now working as expected in Windows Azure
  • Added basic support for experiments (draggable experiments)
  • Added methods to save/read experiments from TableStorage
  • The job status can now be retrieved by using the GetTasks/GetTaskData methods
  • Added a class to convert JSON-objects to Algorithm instances
  • Web page: Added experiment button to navigation
File size: 1.6 KB
Line 
1@model HeuristicLab.Services.Optimization.Web.Models.LogOnModel
2
3@{
4    ViewBag.Title = "Log On";
5}
6
7<h2>Log On</h2>
8<p>
9    Please enter your user name and password. <!--@Html.ActionLink("Register", "Register") if you don't have an account.-->
10</p>
11
12<script src="@Url.Content("~/Scripts/jquery.validate.min.js")" type="text/javascript"></script>
13<script src="@Url.Content("~/Scripts/jquery.validate.unobtrusive.min.js")" type="text/javascript"></script>
14
15@Html.ValidationSummary(true, "Login was unsuccessful. Please correct the errors and try again.")
16@using (Html.BeginForm("LogOn", "Account", new { ReturnUrl = Request.QueryString["ReturnUrl"] }, FormMethod.Post, new { @class ="hl-signon-form" })) {
17        <fieldset>
18            <legend>Account Information</legend>
19
20            <div class="editor-label">
21                @Html.LabelFor(m => m.UserName)
22            </div>
23            <div class="editor-field">
24                @Html.TextBoxFor(m => m.UserName)
25                @Html.ValidationMessageFor(m => m.UserName)
26            </div>
27
28            <div class="editor-label">
29                @Html.LabelFor(m => m.Password)
30            </div>
31            <div class="editor-field">
32                @Html.PasswordFor(m => m.Password)
33                @Html.ValidationMessageFor(m => m.Password)
34            </div>
35
36            <div class="editor-label">
37                @Html.CheckBoxFor(m => m.RememberMe)
38                @Html.LabelFor(m => m.RememberMe)
39            </div>
40
41            <p>
42                <input type="submit" value="Log On" />
43            </p>
44        </fieldset>
45}
Note: See TracBrowser for help on using the repository browser.