17 lines
800 B
Plaintext
17 lines
800 B
Plaintext
<!DOCTYPE html>
|
|
</html lang="<%= config.language %>">
|
|
<head>
|
|
<%- include("../partials/head") %>
|
|
</head>
|
|
<body>
|
|
<form action="/submit_signup" method="POST">
|
|
<input placeholder="username" required name="username"><br/>
|
|
<input placeholder="prettyname" required name="prettyname"><br/>
|
|
<input placeholder="password" type="password" required id="password" name="password"><br/>
|
|
<textarea placeholder="description (social links, what you do etc), supports markdown" id="description" name="description"></textarea><br/>
|
|
<label><%- config.string.signup_agreement %>: </label><input type="checkbox" name="agreement" required><br/>
|
|
<input type="submit" value="Submit"><br/>
|
|
</form>
|
|
</body>
|
|
</html>
|