Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 9062 was 9062, checked in by fschoepp, 11 years ago

#1888:
Backend changes:

  • Simplified job state detection (only one hive call will be made to detect all states now, instead of one additional call per job)
  • Reorganized classes (moved model classes into Model folder)

Website changes:

  • Website now heavily uses JavaScript to achieve better user experience
  • JavaScript degrades gracefully, except for plots
  • Tables: Added jquery-datatable-plugin to extend tables (pagination + search functionality)
  • OaaS-Website now uses the design of the HL websites (found in WebApplication branch)
  • Added jqplot to render zoomable line plots for HL-Datatables
  • Styling.js: Plots will be generated by using an ajax call; additional jquery-styling occurs within this file.
  • Added jquery-ui-1.9.2 which is capable of handling/rendering tabs, accordions and resizers.
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
17@using (Html.BeginForm("LogOn", "Account", FormMethod.Post, new { @class = "hl-signon-form" })) {
18        <fieldset>
19            <legend>Account Information</legend>
20
21            <div class="editor-label">
22                @Html.LabelFor(m => m.UserName)
23            </div>
24            <div class="editor-field">
25                @Html.TextBoxFor(m => m.UserName)
26                @Html.ValidationMessageFor(m => m.UserName)
27            </div>
28
29            <div class="editor-label">
30                @Html.LabelFor(m => m.Password)
31            </div>
32            <div class="editor-field">
33                @Html.PasswordFor(m => m.Password)
34                @Html.ValidationMessageFor(m => m.Password)
35            </div>
36
37            <div class="editor-label">
38                @Html.CheckBoxFor(m => m.RememberMe)
39                @Html.LabelFor(m => m.RememberMe)
40            </div>
41
42            <p>
43                <input type="submit" value="Log On" />
44            </p>
45        </fieldset>
46}
Note: See TracBrowser for help on using the repository browser.