-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresetpass.jsp
More file actions
164 lines (128 loc) · 6.24 KB
/
resetpass.jsp
File metadata and controls
164 lines (128 loc) · 6.24 KB
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
153
154
155
156
157
158
159
160
161
162
163
164
<%@page import="com.javawebtutor.model.User"%>
<%@page import="java.util.Date"%>
<!doctype html>
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<title>Reset Password | FCD</title> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="//static.vsco.co/bower/28854e/modernizr/modernizr.js"></script>
<script src="//static.vsco.co/js/28854e/thirdparty/lazy-retina.min.js"></script>
<link rel="stylesheet" media="all" href="//static.vsco.co/css/28854e/style.css">
<link rel="stylesheet" media="all" href="css/style.css">
<link rel="shortcut icon" href="images/favicon.ico">
<link rel="apple-touch-icon-precomposed" href="//assets.vsco.co/assets/images/favicon-152.png">
<meta name="msapplication-TileColor" content="#999999">
<meta name="msapplication-TileImage" content="//assets.vsco.co/assets/images/favicon-152.png">
<meta name="google-site-verification" content="gfZiQeApsecy0dJHAojvcrAaU_XBO6CMGHc9rZG2sSs" />
<link rel="stylesheet" media="all" href="//static.vsco.co/css/28854e/account/style.css">
<script>window.VSCOVARS = window.VSCOVARS || {}; VSCOVARS.Domain = "vsco.co"; VSCOVARS.Static = "static.vsco.co"; VSCOVARS.RIS = "i.vsco.co";</script>
<script src='//static.vsco.co/js/28854e/corp-dist/build/corp-config.js'></script>
<script src='//static.vsco.co/js/28854e/corp-dist/build/corp-base.js'></script>
<script src='//static.vsco.co/js/28854e/corp-dist/build/pages/account.js'></script>
<script defer>require(['pages/account']);</script></head>
<body class="user-account user-signin">
<!-- Google Tag Manager -->
<noscript><iframe src='//www.googletagmanager.com/ns.html?id=GTM-WMVBHV'
height='0' width='0' style='display:none;visibility:hidden'></iframe></noscript>
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push(
{
var myDate = new Date();var offset = '+5.30';
'gtm.start': new Date( myDate.toGMTString() + offset ).getTime(),event:'gtm.js'}
);var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-WMVBHV');</script>
<!-- End Google Tag Manager --><div class="pageWrapper">
<section id="veggieburger-content" class="veggieburger-content clearfix">
<div class="veggieburger-account">
</div>
<ul class="veggieburger-main-nav">
<li> </li>
<li> </li>
<li> </li>
<li> </li>
</ul>
<nav class="veggieburger-secondary-nav mt20">
<ul>
<li> </li>
<li> </li>
<li> </li>
<li> </li>
</ul>
<ul>
<li> </li>
<li> </li>
<li> </li>
<li> </li>
</ul>
</nav>
</section>
<main id="pageBounds" class="pageBounds " role="main">
<div id="loginpage" class="loginpage">
<div class="sign-in-box container_12">
<div class="message-bar ta-center">
<div id="errorBar" class="messageBar error"></div> <div id="infoBar" class="messageBar info"></div> </div>
<p>
<img src="images/logocreate.png" width="160" height="160"/>
</p>
<div class="message-bar ta-center">
<div id="errorBar" class="messageBar error"></div> <div id="infoBar" class="messageBar info"></div> </div>
<p>
<p style="color:#6495ED"> <%=new Date()%></br> </p>
<%
User user = (User) session.getAttribute("user");
%>
<p style="color:#6495ED"><b>Hi! <%= user.getFirstName() + " " + user.getLastName()%></b><br/>
Enter new password<br>to reset with football club doodhwa.</p>
<br/>
<div class="message-bar ta-center">
<div id="errorBar" class="messageBar error"></div> <div id="infoBar" class="messageBar info"></div> </div>
<div class="loginBox">
<form method="POST" action="PassResetServlet" id="loginForm" novalidate>
<input type="hidden" name="email" value="<%=user.getEmail()%>">
<input type="password" class="mb20" name="newpassword" id="newpassword" placeholder="New Password">
<input type="password" class="mb20" name="confirmpassword" id="confirmpassword" placeholder="Confirm Password">
<button style="color:#67736f" id="loginButton" class="right link greyed-out" type="submit">Submit</button>
</form>
</div>
</div>
<div id="consentContainer" class="consent-container" style="display: none;">
<div class="consent mx-auto">
<div class="mb50">
<p class="consent-intro ta-left"></p>
</div>
</div>
</div>
</div> <!-- /container loginpage-->
</main>
<script async src='https://cantorlytics.vsco.co'>
</script>
<script>
(function(i,s,o,g,r,a,m){ i['GoogleAnalyticsObject']=r; i[r]=i[r] || function(){
(i[r].q=i[r].q||[]).push(arguments)}, i[r].l=1*new Date();
a=s.createElement(o),
m=s.getElementsByTagName(o)[0];
a.async=1;
a.src=g;
m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-23285656-1', 'auto');
ga('send', 'pageview');
</script>
<script>
!function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function()
{n.callMethod? n.callMethod.apply(n,arguments):n.queue.push(arguments)}
;if(!f._fbq)f._fbq=n;
n.push=n;n.loaded=!0;n.version='2.0';n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)}(window,
document,'script','//connect.facebook.net/en_US/fbevents.js');
fbq('init', '405259746325035');
fbq('track', 'PageView');
</script>
<noscript><img height="1" width="1" style="display:none"
src="https://www.facebook.com/tr?id=405259746325035&ev=PageView&noscript=1"
/></noscript>
</div>
</body></html>