first commit
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Sign up</title>
|
||||
<link rel="stylesheet" media="screen" href="/static/global.css" />
|
||||
</head>
|
||||
<body>
|
||||
<main>
|
||||
<nav>
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="/posts">Posts</a></td>
|
||||
<td><a href="/users">Users</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="/login">login</a></td>
|
||||
<td><a href="/signup">signup</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
</nav>
|
||||
|
||||
<form method="POST" action="/action/signup">
|
||||
<input type="text" name="name" placeholder="name" />
|
||||
<input type="password" name="pass" placeholder="pass" />
|
||||
<textarea name="bio" placeholder="bio"></textarea>
|
||||
<input type="submit" value="signup" />
|
||||
</form>
|
||||
</main>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user