Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 13656 was 13656, checked in by ascheibe, 8 years ago

#2582 created branch for Hive Web Job Manager

File size: 1.2 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 Heuristic Lab Hive</h4>
9                <form asp-controller="Home" asp-action="Login" method="POST">
10                    <label asp-for="loginName"></label>
11                    <input type="text" asp-for="loginName" class="form-control input-sm chat-input" />
12                    <label asp-for="password"></label>
13                    <input type="password" asp-for="password" class="form-control input-sm chat-input" />
14                    <br/>
15                    <div class="wrapper">
16                        <span class="group-btn">
17                            <button type="submit" class="btn btn-primary btn-md"
18                                    style="width: 100%">
19                                Login
20                            </button>
21                        </span>
22                        <span style="color:red"><br/>@Model.errorMessage</span>
23                    </div>
24                </form>
25            </div>
26
27        </div>
28    </div>
29</div>
Note: See TracBrowser for help on using the repository browser.