我试图使用 JavaScript 添加按钮,但不是将按钮添加到页面,而是抛出一个SyntaxError: Invalid or unexpected token
document.write('
<p>Sign in</p>
<form action="/chat" method="GET">
<p> Login: <input type="text" name="login"/> </p>
<p> Password: <input type="text" name="password"/> <input type="submit" value="Ok"> </p>
</form>
<br>
<form action="/signup">
<button type = "submit"> button for registration</button>
</form>');