Files
Noja/examples/http_server/pages/signup.html
T

13 lines
319 B
HTML

<html>
<head>
<title>Sign-up page</title>
</head>
<body>
<form action="/signup" method="POST">
<input type="text" name="user" placeholder="[Username]" />
<input type="password" name="pass" placeholder="[Password]" />
<input type="submit" value="Sign-up!" />
</form>
</body>
</html>