File tree 10 files changed +351
-16
lines changed
10 files changed +351
-16
lines changed Original file line number Diff line number Diff line change
1
+ <!DOCTYPE html>
2
+ <!--
3
+ This page is displayed when someone navigates to a verify email or reset password link
4
+ but their security token is wrong. This can either mean the user has clicked on a
5
+ stale link (i.e. re-click on a password reset link after resetting their password) or
6
+ (rarely) this could be a sign of a malicious user trying to tamper with your app.
7
+ -->
8
+ < html >
9
+
10
+ < head >
11
+ < title > Email Verification</ title >
12
+ </ head >
13
+
14
+ < body >
15
+ < h1 > {{appName}}</ h1 >
16
+ < h1 > Invalid verification link!</ h1 >
17
+ < form method ="POST " action ="{{{publicServerUrl}}}/apps/{{{appId}}}/resend_verification_email ">
18
+ < input name ="username " type ="hidden " value ="{{{username}}} ">
19
+ < input name ="locale " type ="hidden " value ="{{{locale}}} ">
20
+ < button type ="submit "> Resend Link</ button >
21
+ </ form >
22
+ </ body >
23
+
24
+ </ html >
Original file line number Diff line number Diff line change
1
+ <!DOCTYPE html>
2
+ <!--
3
+ This page is displayed when someone navigates to a verify email link with an invalid
4
+ security token and requests a link resend. This page is displayed when the username from
5
+ the original link is invalid or if the email of that user has already been verified when
6
+ the resend request is made.
7
+ -->
8
+ < html >
9
+
10
+ < head >
11
+ < title > Email Verification</ title >
12
+ </ head >
13
+
14
+ < body >
15
+ < h1 > {{appName}}</ h1 >
16
+ < h1 > Invalid link!</ h1 >
17
+ < p > No link sent. User not found or email already verified.</ p >
18
+ </ body >
19
+
20
+ </ html >
Original file line number Diff line number Diff line change
1
+ <!DOCTYPE html>
2
+ <!--
3
+ This page is displayed when someone navigates to a verify email link with an invalid
4
+ security token and requests a link resend. This page is displayed when the username
5
+ from the original verification link has been found and a new verification link has
6
+ been successfully sent to the corresponding stored email.
7
+ -->
8
+ < html >
9
+
10
+ < head >
11
+ < title > Email Verification</ title >
12
+ </ head >
13
+
14
+ < body >
15
+ < h1 > {{appName}}</ h1 >
16
+ < h1 > Link sent!</ h1 >
17
+ < p > A new link has been sent. Check your email.</ p >
18
+ </ body >
19
+
20
+ </ html >
Original file line number Diff line number Diff line change
1
+ <!DOCTYPE html>
2
+ <!--
3
+ This page is displayed whenever someone has successfully reset their password.
4
+ Pro and Enterprise accounts may edit this page and tell Parse to use that custom
5
+ version in their Parse app. See the App Settigns page for more information.
6
+ -->
7
+ < html >
8
+
9
+ < head >
10
+ < title > Email Verification</ title >
11
+ </ head >
12
+
13
+ < body >
14
+ < h1 > {{appName}}</ h1 >
15
+ < h1 > Email verified!</ h1 >
16
+ < p > Successfully verified your email for account: {{username}}.</ p >
17
+ </ body >
18
+
19
+ </ html >
Original file line number Diff line number Diff line change
1
+ <!DOCTYPE html>
2
+ <!--
3
+ This page is displayed when someone navigates to a verify email or reset password link
4
+ but their security token is wrong. This can either mean the user has clicked on a
5
+ stale link (i.e. re-click on a password reset link after resetting their password) or
6
+ (rarely) this could be a sign of a malicious user trying to tamper with your app.
7
+ -->
8
+ < html >
9
+
10
+ < head >
11
+ < title > Email Verification</ title >
12
+ </ head >
13
+
14
+ < body >
15
+ < h1 > {{appName}}</ h1 >
16
+ < h1 > Invalid verification link!</ h1 >
17
+ < form method ="POST " action ="{{{publicServerUrl}}}/apps/{{{appId}}}/resend_verification_email ">
18
+ < input name ="username " type ="hidden " value ="{{{username}}} ">
19
+ < input name ="locale " type ="hidden " value ="{{{locale}}} ">
20
+ < button type ="submit "> Resend Link</ button >
21
+ </ form >
22
+ </ body >
23
+
24
+ </ html >
Original file line number Diff line number Diff line change
1
+ <!DOCTYPE html>
2
+ <!--
3
+ This page is displayed when someone navigates to a verify email link with an invalid
4
+ security token and requests a link resend. This page is displayed when the username from
5
+ the original link is invalid or if the email of that user has already been verified when
6
+ the resend request is made.
7
+ -->
8
+ < html >
9
+
10
+ < head >
11
+ < title > Email Verification</ title >
12
+ </ head >
13
+
14
+ < body >
15
+ < h1 > {{appName}}</ h1 >
16
+ < h1 > Invalid link!</ h1 >
17
+ < p > No link sent. User not found or email already verified.</ p >
18
+ </ body >
19
+
20
+ </ html >
Original file line number Diff line number Diff line change
1
+ <!DOCTYPE html>
2
+ <!--
3
+ This page is displayed when someone navigates to a verify email link with an invalid
4
+ security token and requests a link resend. This page is displayed when the username
5
+ from the original verification link has been found and a new verification link has
6
+ been successfully sent to the corresponding stored email.
7
+ -->
8
+ < html >
9
+
10
+ < head >
11
+ < title > Email Verification</ title >
12
+ </ head >
13
+
14
+ < body >
15
+ < h1 > {{appName}}</ h1 >
16
+ < h1 > Link sent!</ h1 >
17
+ < p > A new link has been sent. Check your email.</ p >
18
+ </ body >
19
+
20
+ </ html >
Original file line number Diff line number Diff line change
1
+ <!DOCTYPE html>
2
+ <!--
3
+ This page is displayed whenever someone has successfully reset their password.
4
+ Pro and Enterprise accounts may edit this page and tell Parse to use that custom
5
+ version in their Parse app. See the App Settigns page for more information.
6
+ -->
7
+ < html >
8
+
9
+ < head >
10
+ < title > Email Verification</ title >
11
+ </ head >
12
+
13
+ < body >
14
+ < h1 > {{appName}}</ h1 >
15
+ < h1 > Email verified!</ h1 >
16
+ < p > Successfully verified your email for account: {{username}}.</ p >
17
+ </ body >
18
+
19
+ </ html >
Original file line number Diff line number Diff line change 14
14
< body >
15
15
< h1 > {{appName}}</ h1 >
16
16
< h1 > Invalid verification link!</ h1 >
17
- < form id ="resendForm " method ="POST " action ="/apps/{{{appId}}}/resend_verification_email ">
18
- < input id ="usernameField " class ="form-control " name ="username " type ="hidden " value ="{{{username}}} ">
19
- < button type ="submit " class ="btn btn-default "> Resend Link</ button >
17
+ < form method ="POST " action ="{{{publicServerUrl}}}/apps/{{{appId}}}/resend_verification_email ">
18
+ < input name ="username " type ="hidden " value ="{{{username}}} ">
19
+ < input name ="locale " type ="hidden " value ="{{{locale}}} ">
20
+ < button type ="submit "> Resend Link</ button >
20
21
</ form >
21
22
</ body >
22
23
You can’t perform that action at this time.
0 commit comments