41 lines
1.1 KiB
HTML
41 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<link rel="stylesheet" href="/static/style.css" />
|
|
<title>Register</title>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<nav class="container">
|
|
<ul>
|
|
<li><a href="/">Home</a></li>
|
|
<li class="current"><a href="/register">Register</a></li>
|
|
</ul>
|
|
</nav>
|
|
</header>
|
|
<main class="container page page-register">
|
|
<div class="form-wrap">
|
|
<form action="/register" method="POST">
|
|
<div class="form-input">
|
|
<label for="username">Username:</label>
|
|
<input type="text" name="username" id="username" required />
|
|
</div>
|
|
<div class="form-input">
|
|
<label for="contact">Contact:</label>
|
|
<input type="text" name="contact" id="contact" required />
|
|
</div>
|
|
<div class="form-input">
|
|
<label for="password">Password:</label>
|
|
<input type="password" name="password" placeholder="optional" id="password"/>
|
|
</div>
|
|
<div class="btn-wrap">
|
|
<button class="btn">Submit</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</main>
|
|
</body>
|
|
</html>
|