Last change
on this file since 11001 was
9582,
checked in by fschoepp, 11 years ago
|
#1888:
- Added an overview for users to inspect their orders
- Order Administrators may now suspend or reactivate orders
- When creating an order, its necessary to enter payment information (paypal, credit card,...) before
- Also, the billing period and type must be entered during the creation of an order.
|
File size:
1.6 KB
|
Rev | Line | |
---|
[8384] | 1 | @model HeuristicLab.Services.Optimization.Web.Models.LogOnModel
|
---|
| 2 |
|
---|
| 3 | @{
|
---|
| 4 | ViewBag.Title = "Log On";
|
---|
| 5 | }
|
---|
| 6 |
|
---|
| 7 | <h2>Log On</h2>
|
---|
| 8 | <p>
|
---|
[9582] | 9 | Please enter your user name and password. @Html.ActionLink("Register", "Register") if you don't have an account.
|
---|
[8384] | 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.")
|
---|
[9215] | 16 | @using (Html.BeginForm("LogOn", "Account", new { ReturnUrl = Request.QueryString["ReturnUrl"] }, FormMethod.Post, new { @class ="hl-signon-form" })) {
|
---|
[8384] | 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.