23 lines
583 B
HTML
23 lines
583 B
HTML
<!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>
|