13 lines
306 B
Text
13 lines
306 B
Text
<h1>Create account</h1>
|
|
|
|
<form action="/signup" method="post">
|
|
<p>
|
|
<label for="email">Email</label>
|
|
<input type="text" name="email">
|
|
</p>
|
|
<p>
|
|
<label for="password">Password</label>
|
|
<input type="password" name="password">
|
|
</p>
|
|
<button type="submit">Create account</button>
|
|
</form>
|