-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.html
executable file
·92 lines (85 loc) · 3.58 KB
/
login.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="msapplication-tap-highlight" content="no">
<title>AVA Login</title>
<!-- Favicons-->
<link rel="icon" href="images/favicon/favicon-32x32.png" sizes="32x32">
<!-- Favicons-->
<link rel="apple-touch-icon-precomposed" href="images/favicon/apple-touch-icon-152x152.png">
<!-- For iPhone -->
<meta name="msapplication-TileColor" content="#00bcd4">
<meta name="msapplication-TileImage" content="images/favicon/mstile-144x144.png">
<!-- For Windows Phone -->
<!-- CORE CSS-->
<link href="build/styles.css" type="text/css" rel="stylesheet" media="screen,projection">
<!-- <link href="css/materialize.css" type="text/css" rel="stylesheet" media="screen,projection">
<link href="css/style.css" type="text/css" rel="stylesheet" media="screen,projection"> -->
<link href="css/page-center.css" type="text/css" rel="stylesheet" media="screen,projection">
</head>
<body class="indigo" ng-app="altavault">
<div id="login-page" class="row" ng-controller="login">
<div class="col s12 z-depth-5 card-panel">
<form class="login-form" ng-submit="auth(username, password)">
<div class="row">
<div class="input-field col s12 center">
<img src="images/altavault.jpg" alt="" class="circle responsive-img valign profile-image-login">
<p class="center login-form-text">AltaVault</p>
</div>
</div>
<div class="progress" ng-show="loading">
<div class="indeterminate"></div>
</div>
<div ng-show="errorMsg">
<h6 class="center">Invalid credentials! Try again!</h4>
</div>
<div class="row margin">
<div class="input-field col s12">
<i class="mdi-social-person-outline prefix"></i>
<input type="text" required id="username" ng-model="username">
<label for="username" class="center-align">Username</label>
</div>
</div>
<div class="row margin">
<div class="input-field col s12">
<i class="mdi-action-lock-outline prefix"></i>
<input type="password" required id="password" ng-model="password">
<label for="password">Password</label>
</div>
</div>
<div class="row">
<div class="input-field col s12 m12 l12 login-text">
<input type="checkbox" id="remember-me" />
<label for="remember-me">Remember me</label>
</div>
</div>
<div class="row">
<div class="input-field col s12">
<button id="login_submit" name="login_submit" class="btn indigo waves-effect waves-light col s12 white-text" type="submit" value="Login">Login</button>
</div>
</div>
<div class="row">
<div class="input-field col s6 m6 l6">
<p class="margin medium-small"><a class="grey-text" href="#">Register Now!</a></p>
</div>
<div class="input-field col s6 m6 l6">
<p class="margin right-align medium-small">
<a class="grey-text" href="#">Forgot password?</a></p>
</div>
</div>
</form>
</div>
</div>
<!-- angularJS -->
<script src="js/angular.min.js"></script>
<script type="text/javascript" src="js/highcharts.js"></script>
<script type="text/javascript" src="build/app.js"></script>
<!-- jQuery Library -->
<script src="js/jquery.min.js"></script>
<!--materialize js-->
<script type="text/javascript" src="js/materialize.js"></script>
</body>
</html>