mirror of
https://gitlab.com/MrFry/mrfrys-node-server
synced 2025-04-01 20:24:18 +02:00
Merge branch 'master' of gitlab.com:MrFry/mrfrys-node-server
This commit is contained in:
commit
cf028489c3
4 changed files with 119 additions and 11 deletions
|
@ -101,7 +101,7 @@
|
|||
</div>
|
||||
<div id='form'>
|
||||
<div class='inputContainer'>
|
||||
<input type='text' id='pw' name='pw' autocomplete="off" autofocus/>
|
||||
<input onkeyup="PWKeyUp(this)" type='text' id='pw' name='pw' autocomplete="off" autofocus/>
|
||||
<input type='hidden' id='cid' name='pw' autocomplete="off"/>
|
||||
</div>
|
||||
<div class='ircLinkContainer' >
|
||||
|
@ -112,6 +112,12 @@
|
|||
</div>
|
||||
</body>
|
||||
<script>
|
||||
function PWKeyUp (inputField) {
|
||||
if (event.keyCode === 13) {
|
||||
event.preventDefault();
|
||||
Login(document.getElementById('sendButton'))
|
||||
}
|
||||
}
|
||||
function HandleFeedbackResp (resp) {
|
||||
document.getElementById('sendButton').innerText = 'Submit'
|
||||
const textNode = document.getElementById('text')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue