23 lines
670 B
Plaintext
23 lines
670 B
Plaintext
<!doctype html>
|
|
<html>
|
|
<body>
|
|
{{template "header".}}
|
|
<main class="px-6">
|
|
<form action="/signup" method="post">
|
|
<div>
|
|
<label for="signupEmail">Email Address</label>
|
|
<input name="email" id="signupEmail" type="email" placeholder="Email address" required autocomplete="email"/>
|
|
</div>
|
|
<div>
|
|
<label for="signupPassword">Password</label>
|
|
<input name="password" id="signupPassword" type="password" placeholder="password" required/>
|
|
</div>
|
|
<div>
|
|
<button type="submit">Sign up</button>
|
|
</div>
|
|
</form>
|
|
</main>
|
|
{{template "footer" .}}
|
|
</body>
|
|
</html>
|