forked from accubits/smart-kyc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresetPassword.html
152 lines (136 loc) · 4.27 KB
/
resetPassword.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<!DOCTYPE html>
<html lang="en" ng-app="smartkycApp">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>Verification</title>
<link rel="shortcut icon" type="image/png" href="images/favicon.png"/>
<link rel="stylesheet" href="css/registration.css">
</head>
<body ng-controller="verifyCntl">
<div class="outer" >
<div class="header">
<div class="logo">
<a href="#" >SmartKYC</a>
</div>
<div class="nav_bar">
<a href="http://www.SmartKYC.com/">
<div class="nav_com">
HOME
</div>
</a>
<a href="http://www.SmartKYC/place-an-order/">
<div class="nav_com">
PLACE AN ORDER
</div>
</a>
<a href="http://www.SmartKYC.com/contact-us/">
<div class="nav_com">
CONTACT US
</div>
</a>
</div>
<div style="clear:both;"></div>
</div>
<div class="mob_nav_bar">
<a href="http://www.SmartKYC.com/">
<div class="nav_com">
HOME
</div>
</a>
<a href="http://www.SmartKYC.com/place-an-order/">
<div class="nav_com">
PLACE AN ORDER
</div>
</a>
<a href="http://www.SmartKYC.com/contact-us/">
<div class="nav_com">
CONTACT US
</div>
</a>
</div>
<div class="sub_head">
<div class="sub_capt">
Reset Password
</div>
<div class="sub_path">
<!--HOME / PROFILE-->
</div>
<div style="clear: both"></div>
</div>
<div class="tab_content_wrap">
<div class="tab_content active" id="password">
<div class="reset_pass_wrap">
<div class="text_box_full txt_bx">
<div class="text_desc">Password</div>
<input type="password" ng-model="passDeatils.password">
</div>
<div class="text_box_full txt_bx">
<div class="text_desc">Re-Type Password</div>
<input type="password" ng-model="passDeatils.reenterpassword">
</div>
<div class="log_wrap">
<div class="login_btn" ng-click="resetPassword()" >
Reset
</div>
</div>
</div>
</div>
</div>
<footer>
<!--<div class="to_top">-->
<!--</div>-->
<div class="copy_right">
Copyright © 2017 SmartKYC.com. All Rights Reserved.
</div>
<div class="copy_links" style="display: none;">
<div class="copy_blocks">
About Us
</div>
<div class="copy_blocks">
Fees
</div>
<div class="copy_blocks">
Terms of use
</div>
<div class="copy_blocks">
Privacy Policy
</div>
<div class="copy_blocks">
Contact Us
</div>
</div>
<div style="clear:both;"></div>
</footer>
</div>
<style>
.reset_pass_wrap{
width: 400px;
margin: 80px auto 80px;
border: 1px solid #ddd;
box-shadow: 0px 0px 10px 1px #ddd;
padding: 30px;
}
.text_box_full{
margin: 10px 0;
}
</style>
<script rel="script" src="js/libs/jquery.min.js"></script>
<script rel="script" src="js/libs/angular.min.js"></script>
<script rel="script" src="js/libs/angular-route.min.js"></script>
<script rel="script" src="js/libs/datepicker.min.js"></script>
<script rel="script" src="js/libs/datepicker.en.js"></script>
<script rel="script" src="js/libs/dropzone.js"></script>
<script rel="script" src="js/toast/toast.js"></script>
<script rel="script" src="js/config.js"></script>
<script rel="script" src="js/registration.js"></script>
<script rel="script" src="js/maincontroller.js"></script>
<script rel="script" src="js/resetPassCtrl.js"></script>
<script>
$('.datepicker-here').datepicker
({
language: 'en',dateFormat: 'yyyy-mm-dd'
});
</script>
</body>
</html>