35 lines
893 B
HTML
35 lines
893 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Juice - Register</title>
|
|
<link rel="stylesheet" type="text/css" href="/static/juice.css">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="description" content="An IOT hub.">
|
|
<link rel="icon" href="/static/orange-juice.svg">
|
|
</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>
|