Register form and confirmation messages
This commit is contained in:
22
src/routes/register/register.html
Normal file
22
src/routes/register/register.html
Normal file
@@ -0,0 +1,22 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Register</title>
|
||||
</head>
|
||||
<body>
|
||||
<form action="/subscriptions" method="post">
|
||||
<input type="text" name="name" placeholder="Name" />
|
||||
<input type="text" name="email" placeholder="Email address" />
|
||||
<input
|
||||
type="text"
|
||||
name="email_check"
|
||||
placeholder="Confirm email address"
|
||||
/>
|
||||
<button type="Register">Register</button>
|
||||
</form>
|
||||
{}
|
||||
<p><a href="/">Back</a></p>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user