Created
April 6, 2018 09:46
-
-
Save pivanov/1c17fe2e7ca3c064c7b37ced844df918 to your computer and use it in GitHub Desktop.
Parse Server HTML Templates
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<!-- This page is displayed when someone navigates to a verify email or reset password link | |
but their security token is wrong. This can either mean the user has clicked on a | |
stale link (i.e. re-click on a password reset link after resetting their password) or | |
(rarely) this could be a sign of a malicious user trying to tamper with your app. | |
--> | |
<html> | |
<head> | |
<title>Invalid Link</title> | |
<style type='text/css'> | |
.container { | |
border-width: 0px; | |
display: block; | |
font: inherit; | |
font-family: 'Helvetica Neue', Helvetica; | |
font-size: 16px; | |
height: 30px; | |
line-height: 16px; | |
margin: 45px 0px 0px 45px; | |
padding: 0px 8px 0px 8px; | |
position: relative; | |
vertical-align: baseline; | |
} | |
h1, h2, h3, h4, h5 { | |
color: #0067AB; | |
display: block; | |
font: inherit; | |
font-family: 'Open Sans', 'Helvetica Neue', Helvetica; | |
font-size: 30px; | |
font-weight: 600; | |
height: 30px; | |
line-height: 30px; | |
margin: 0 0 15px 0; | |
padding: 0 0 0 0; | |
} | |
</style> | |
<body> | |
<div class="container"> | |
<h1>Invalid Link</h1> | |
</div> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<!-- This page is displayed whenever someone has successfully reset their password. | |
Pro and Enterprise accounts may edit this page and tell Parse to use that custom | |
version in their Parse app. See the App Settigns page for more information. | |
This page will be called with the query param 'username' | |
--> | |
<head> | |
<title>Password Reset</title> | |
<style type='text/css'> | |
h1 { | |
color: #0067AB; | |
display: block; | |
font: inherit; | |
font-family: 'Open Sans', 'Helvetica Neue', Helvetica; | |
font-size: 30px; | |
font-weight: 600; | |
height: 30px; | |
line-height: 30px; | |
margin: 45px 0px 0px 45px; | |
padding: 0px 8px 0px 8px; | |
} | |
</style> | |
<body> | |
<h1>Successfully updated your password!</h1> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<!-- This page is displayed whenever someone has successfully reset their password. | |
Pro and Enterprise accounts may edit this page and tell Parse to use that custom | |
version in their Parse app. See the App Settigns page for more information. | |
This page will be called with the query param 'username' | |
--> | |
<head> | |
<title>Email Verification</title> | |
<style type='text/css'> | |
h1 { | |
color: #0067AB; | |
display: block; | |
font: inherit; | |
font-family: 'Open Sans', 'Helvetica Neue', Helvetica; | |
font-size: 30px; | |
font-weight: 600; | |
height: 30px; | |
line-height: 30px; | |
margin: 45px 0px 0px 45px; | |
padding: 0px 8px 0px 8px; | |
} | |
</style> | |
<body> | |
<h1>Successfully verified your email!</h1> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment