Free cookie consent management tool by TermsFeed Policy Generator

source: branches/WebJobManager/HeuristicLab.Clients.Hive.WebJobManager/Views/Home/Index.cshtml @ 13733

Last change on this file since 13733 was 13733, checked in by jlodewyc, 8 years ago

#2582 Last fixes Job Manager

File size: 1.9 KB
Line 
1
2@model HeuristicLab.Clients.Hive.WebJobManager.ViewModels.LoginViewModel
3
4<div class="container">
5    <div class="row" style="align-content:center">
6        <div class="col-xs-offset-4 col-sm-4" >
7            <div class="form-login">
8                <h4>Welcome to HeuristicLab Hive</h4>
9                <form asp-controller="Home" asp-action="Login" method="POST">
10                    <i class="fa fa-user"></i>
11                    <label asp-for="loginName">
12
13                    </label>
14                    <input
15                           type="text"
16                           asp-for="loginName"
17                           class="form-control input-sm chat-input" />
18                    <i class="fa fa-key"></i>
19                    <label
20                           asp-for="password">
21
22                    </label>
23                    <input
24                           type="password"
25                           asp-for="password"
26                           class="form-control input-sm chat-input" />
27                    <br/>
28                    <div class="wrapper">
29                        <span class="group-btn">
30                            <button
31                                    type="submit"
32                                    class="btn btn-primary btn-md"
33                                    style="width: 100%;box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
34                            text-shadow:2px 2px black;">
35                                 Login <i class="fa fa-sign-in"></i>
36                            </button>
37                        </span>
38                        <span style="color:red">
39                        <br/>@Model.errorMessage
40                        </span>
41                    </div>
42                </form>
43            </div>
44
45        </div>
46    </div>
47</div>
Note: See TracBrowser for help on using the repository browser.