29 lines
650 B
HTML
29 lines
650 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<title>flabk - signup</title>
|
|
<link rel="stylesheet" href="/static/style/main.css">
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
|
</head>
|
|
|
|
<body>
|
|
{{> LoggedOut }}
|
|
<h1>signup</h1>
|
|
<div id="central">
|
|
<p>signup form</p>
|
|
{{> (lookup this "tag_name")}}
|
|
<form class="big" id="signup" method="post" action="/signup">
|
|
<input type="text" name="username" placeholder="username">
|
|
<br>
|
|
<input type="email" name="email" placeholder="email">
|
|
<br>
|
|
<input type="password" name="password" placeholder="password">
|
|
<input type="submit" value="Submit" hidden>
|
|
</form>
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|