mirror of
https://git.waldn.net/git/knotteye/satyr.git
synced 2025-09-05 09:35:57 +00:00
Fix throwing unhandled promise rejection if user doesn't exist in validatePasswordRedirect user to /profile on successful login
This commit is contained in:
@ -3,8 +3,15 @@
|
||||
<h3>Log in to {{ sitename }}</h3><span style="font-size: small;">Not registered yet? Sign up <a href="/register">here</a>.</br></br></span>
|
||||
<form action="/api/login" method="POST" target="responseFrame">
|
||||
Username: </br><input type="text" name="username" style="min-width: 300px" placeholder="e.g. lain"/></br>
|
||||
Password: </br><input type="password" name="password" style="min-width: 300px"/></br>
|
||||
Password: </br><input type="password" name="password" style="min-width: 300px"/></br></br>
|
||||
<input type="submit" value="Submit">
|
||||
</form>
|
||||
<iframe name="responseFrame" border="0" frameborder="0" style="display: inline;"></iframe>
|
||||
<script type="text/javascript">
|
||||
function handleLoad() {
|
||||
var r = JSON.parse(document.getElementById('responseFrame').contentDocument.documentElement.textContent).success
|
||||
if (typeof(r) !== 'undefined') window.location.href = '/profile'
|
||||
}
|
||||
</script>
|
||||
<iframe name="responseFrame" onload="handleLoad()" border="0" frameborder="0" style="display: inline;" id="responseFrame">
|
||||
</iframe>
|
||||
{% endblock %}
|
Reference in New Issue
Block a user