qwik-account-manager/static/index.html

46 lines
2.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="apple-touch-icon" sizes="180x180" href="https://qwik.space/assets/favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://qwik.space/assets/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="https://qwik.space/assets/favicons/favicon-16x16.png">
<link rel="manifest" href="https://qwik.space/assets/favicons/site.webmanifest">
<link rel="mask-icon" href="https://qwik.space/assets/favicons/safari-pinned-tab.svg" color="#3ddf89">
<link rel="shortcut icon" href="https://qwik.space/assets/favicons/favicon.ico">
<meta name="msapplication-TileColor" content="#181833">
<meta name="msapplication-config" content="https://qwik.space/assets/favicons/browserconfig.xml">
<meta name="theme-color" content="#3ddf89">
<link rel="stylesheet" type="text/css" href="https://qwik.space/assets/css/scaling.css">
<link rel="stylesheet" type="text/css" href="https://qwik.space/assets/css/colors.css">
<link rel="stylesheet" type="text/css" href="https://qwik.space/assets/css/fonts.css">
<link rel="stylesheet" type="text/css" href="https://qwik.space/assets/css/theme.css">
<link rel="stylesheet" type="text/css" href="https://qwik.space/assets/css/landing.css">
<title>qwik</title>
</head>
<body>
<img class="logo" src="https://qwik.space/assets/images/logo.svg" alt="">
<ul>
<li>2-20 character in length</li>
<li>only a-zA-Z0-9 characters only</li>
</ul>
<form method="POST" action="/auth/register">
<label for="username">Username:</label><br>
<input type="text" id="username" name="username"><br>
<label for="password">Password:</label><br>
<input type="password" id="password" name="password">
<br>
<img src="/auth/captcha">
<label for="captcha">Captcha:</label><br>
<input type="text" id="captcha" name="captcha">
<br>
<input type="submit" value="Register!" />
</form>
</body>
</html>