Juice/templates/register.html

34 lines
841 B
HTML
Raw Normal View History

2019-06-22 18:37:16 -04:00
<!DOCTYPE html>
2019-06-24 09:06:41 -04:00
<html lang="en">
2019-06-22 18:37:16 -04:00
<head>
<title>Juice - Register</title>
<link rel="stylesheet" type="text/css" href="/static/juice.css">
2019-06-24 09:06:41 -04:00
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="An IOT hub.">
2019-06-22 18:37:16 -04:00
</head>
<body>
<main>
<div id="devices">
<div class="device">
<h1>Register</h1>
<form method="post" action="{{ form_url }}">
<table>
<tbody>
<tr>
<td>Username</td><td><input name="username" type="text" minlength="3" maxlength="64" required></td>
</tr>
<tr>
<td>Email</td><td><input name="email" type="email"></td>
</tr>
<tr>
<td><input type="submit" value="Submit"></td>
</tr>
</tbody>
</table>
</form>
</div>
</div>
</main>
</body>
</html>