13 lines
327 B
HTML
13 lines
327 B
HTML
<html>
|
|
<head>
|
|
<title>Sign-up page</title>
|
|
</head>
|
|
<body>
|
|
<form action="/signup" method="POST">
|
|
<input type="text" name="username" placeholder="[Username]" />
|
|
<input type="password" name="password" placeholder="[Password]" />
|
|
<input type="submit" value="Sign-up!" />
|
|
</form>
|
|
</body>
|
|
</html>
|