rewrite invite_register.html

This commit is contained in:
S Stewart 2018-11-18 18:23:38 -06:00
parent c8d12c38c9
commit 43069cec88
1 changed files with 13 additions and 10 deletions

View File

@ -1,23 +1,26 @@
<html> <html>
<head> <head>
<title>litecord: register</title>
<link href="css/invite_register.css" rel="stylesheet">
</head> </head>
<body> <body>
<p>register</p> <div style="padding: 10px;"/>
<main class="rounded-thing">
<h1>register</h1>
<form method="post" action="/api/v6/auth/register_inv"> <form method="post" action="/api/v6/auth/register_inv">
<p>your username</p> <input type="text" name="username" placeholder="your username"/>
<input type="text" name="username"/> <br/>
<p>your email</p> <input type="text" name="email" placeholder="your email"/>
<input type="text" name="email"/> <br/>
<p>your password</p> <input type="password" name="password" placeholder="your password"/>
<input type="password" name="password"/> <br/>
<p>invite code</p> <input type="text" name="invcode" placeholder="invite code"/>
<input type="text" name="invcode"/>
<p/><input type="submit" value="register"> <p/><input type="submit" value="register">
</form> </form>
</main>
</body> </body>
</html> </html>