-
-
Notifications
You must be signed in to change notification settings - Fork 141
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
should trigger the new codeql action #1263
Conversation
|
💻 Website PreviewThe latest changes are available as preview in: https://fc2bb56f.accounts-js.pages.dev |
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## master #1263 +/- ##
==========================================
- Coverage 92.71% 92.23% -0.48%
==========================================
Files 116 116
Lines 2483 2499 +16
Branches 562 567 +5
==========================================
+ Hits 2302 2305 +3
- Misses 167 179 +12
- Partials 14 15 +1 ☔ View full report in Codecov by Sentry. |
getHtml( | ||
'Email verification error', | ||
` | ||
<h3>The email address couldn't be verified: ${err.message ?? 'unknown error'}</h3> | ||
` | ||
) |
Check warning
Code scanning / CodeQL
Exception text reinterpreted as HTML Medium
Exception text
getHtml( | ||
'Reset password', | ||
` | ||
<div class="container"> | ||
<h1>Reset your password</h1> | ||
<form action="/resetPassword" method="POST"> | ||
<input type="hidden" name="token" value=${req.params.token} /> | ||
<div class="form-group"> | ||
<label for="newPassword">New password</label> | ||
<input type="text" class="form-control" id="newPassword" value="" placeholder="Enter your new password" name="newPassword"> | ||
</div> | ||
<button type="submit" class="btn btn-primary">Submit</button> | ||
</form> | ||
` | ||
) |
Check warning
Code scanning / CodeQL
Reflected cross-site scripting Medium
No description provided.