-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathauth.html
More file actions
27 lines (21 loc) · 840 Bytes
/
auth.html
File metadata and controls
27 lines (21 loc) · 840 Bytes
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
<div class="main-container" ng-controller="controllers.AuthView">
<div> <!-- ACCOUNT -->
<h2 class="titular">Аккаунт</h2>
<div>
<input type="text" placeholder="" class="email text-input" ng-model="username">
<div class="input-icon envelope-icon-acount">
<span class="fontawesome-envelope scnd-font-color"></span>
</div>
</div>
<div>
<input type="password" placeholder="" class="password text-input" ng-model="password">
<div class="input-icon password-icon">
<span class="fontawesome-lock scnd-font-color"></span>
</div>
</div>
<button type="submit" ng-click="login(username,password)">
Вход
</button>
<p>{{errorMsg}}</p>
</div>
</div>