26 lines
707 B
Plaintext
26 lines
707 B
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>New account</title>
|
|
</head>
|
|
<body>
|
|
<h1>Create an account</h1>
|
|
<form method="post">
|
|
<label for="username">Username</label>
|
|
<input name="username">
|
|
|
|
<label for="email">Email</label>
|
|
<input name="email">
|
|
|
|
<label for="password">Password</label>
|
|
<input type="password" name="password">
|
|
|
|
<label for="password_confirmation">Password confirmation</label>
|
|
<input type="password" name="password_confirmation">
|
|
|
|
<input type="submit" value="Create account"/>
|
|
</form>
|
|
</body>
|
|
</html>
|