21 lines
371 B
HTML
21 lines
371 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Lash v{{.Version}}</title>
|
|
</head>
|
|
|
|
<body>
|
|
</body>
|
|
|
|
<script>
|
|
await fetch('/api/receive-token', {
|
|
method: 'POST',
|
|
headers: { 'Content-Type': 'application/json' },
|
|
body: JSON.stringify({ token: "foo" })
|
|
});
|
|
</script>
|
|
|
|
</html>
|