38 lines
955 B
HTML
38 lines
955 B
HTML
<!DOCTYPE html>
|
|
<html lang="de" dir="ltr">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title></title>
|
|
</head>
|
|
<body>
|
|
Hello World
|
|
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
|
|
<script type="text/javascript">
|
|
const host = location.origin.replace(/^http/, 'ws')
|
|
const ws = new WebSocket(host)
|
|
ws.onmessage = msg => console.log(msg.data)
|
|
|
|
ws.onopen = () => {
|
|
console.log('Hai')
|
|
ws.send('Ping') // Send the message 'Ping' to the server
|
|
}
|
|
|
|
axios.post('/user/register',{
|
|
login: 'jmm',
|
|
password: '123'
|
|
})
|
|
.then( (response) => {
|
|
console.log('register', response)
|
|
})
|
|
|
|
axios.post('/user/login',{
|
|
login: 'jmm',
|
|
password: '123'
|
|
})
|
|
.then( (response) => {
|
|
console.log('login', response)
|
|
console.log('cookie', document.cookie)
|
|
})
|
|
</script>
|
|
</body>
|
|
</html>
|