-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauth.html
38 lines (31 loc) · 1.24 KB
/
auth.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<link rel="stylesheet" media="screen" href="css/style.css"/>
<link rel="stylesheet" media="screen" href="css/engine.css"/>
<div class="engine_main_div" id="auth_view">
<div id="wrapper">
<header class="engine_header">
<div class="container">
<!--logo and company name-->
<div class="header_col1">
<h1><a href="index.html"><img src="img/logo.png" alt=""></a></h1>
</div>
</div>
</header>
</div>
<div class="small_vertical_space"></div>
<div class="engine_left_div_float">
<div class="contents" ng-if="!dataLoaded">
<h2>Добро пожаловать!</h2>
</div>
<div class="small_vertical_space"></div>
<div class="input-div">
<form>
<input type="text" placeholder="login" class="generic-input" ng-model="username">
<input type="password" placeholder="password" class="password generic-input" ng-model="password">
<button type="submit" class="btn btn-process" ng-click="login(username,password)">
Вход
</button>
</form>
<p>{{errorMsg}}</p>
</div>
</div>
</div>