Skip to content

Commit 2e8b228

Browse files
committed
fixed syntax errors and typos in html templates
1 parent 212ad36 commit 2e8b228

7 files changed

+51
-4
lines changed

public/choose_password.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
add an 'error' query parameter.
1212
-->
1313
<html>
14+
1415
<head>
1516
<title>Password Reset</title>
1617
</head>
@@ -60,3 +61,5 @@ <h1>Reset Your Password</h1>
6061
}
6162
</script>
6263
</body>
64+
65+
</html>

public/de-AT/choose_password.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,3 +60,5 @@ <h1>Reset Your Password</h1>
6060
}
6161
</script>
6262
</body>
63+
64+
</html>
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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+
This page will be called with the query param 'username'.
7+
-->
8+
<html>
9+
10+
<head>
11+
<title>Password Reset</title>
12+
</head>
13+
14+
<body>
15+
<h1>{{appName}}</h1>
16+
<h1>Success!</h1>
17+
<p>Your password has been updated.</p>
18+
</body>
19+
20+
</html>

public/de/choose_password.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ <h1>Reset Your Password</h1>
2121
<noscript><p>We apologize, but resetting your password requires javascript</p></noscript>
2222
<p>You can set a new Password for your account: {{username}}</p>
2323
<br />
24-
<p>{{error}}</p>
24+
<p><i>{{error}}</i></p>
2525
<form id='form' action='{{{publicServerUrl}}}/apps/{{{appId}}}/request_password_reset' method='POST'>
2626
<input name='utf-8' type='hidden' value='' />
2727
<input name="username" type="hidden" id="username" value="{{{username}}}" />
@@ -60,3 +60,5 @@ <h1>Reset Your Password</h1>
6060
}
6161
</script>
6262
</body>
63+
64+
</html>

public/de/password_reset_success.html

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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+
This page will be called with the query param 'username'.
7+
-->
8+
<html>
9+
10+
<head>
11+
<title>Password Reset</title>
12+
</head>
13+
14+
<body>
15+
<h1>{{appName}}</h1>
16+
<h1>Success!</h1>
17+
<p>Your password has been updated.</p>
18+
</body>
19+
20+
</html>

public/password_reset_success.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
This page is displayed whenever someone has successfully reset their password.
44
Pro and Enterprise accounts may edit this page and tell Parse to use that custom
55
version in their Parse app. See the App Settigns page for more information.
6-
This page will be called with the query param 'username'
6+
This page will be called with the query param 'username'.
77
-->
88
<html>
99

@@ -14,7 +14,7 @@
1414
<body>
1515
<h1>{{appName}}</h1>
1616
<h1>Success!</h1>
17-
<h1>Your password has been updated.</h1>
17+
<p>Your password has been updated.</p>
1818
</body>
1919

2020
</html>

public/verify_email_success.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<!DOCTYPE html>
2-
<html>
32
<!--
43
This page is displayed whenever someone has successfully reset their password.
54
Pro and Enterprise accounts may edit this page and tell Parse to use that custom
65
version in their Parse app. See the App Settigns page for more information.
76
-->
7+
<html>
88

99
<head>
1010
<title>Email Verification</title>

0 commit comments

Comments
 (0)