forked from Decentrala/taskmanager
21 lines
532 B
HTML
21 lines
532 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Register</title>
|
|
<link rel="stylesheet" href="/static/style.css">
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<form action="/register" method="POST">
|
|
<label for="username">username</label>
|
|
<input type="text" name="username" id="username" required>
|
|
<label for="contact">contact</label>
|
|
<input type="text" name="contact" id="contact" required>
|
|
<button> Submit </button>
|
|
</form>
|
|
</main>
|
|
</body>
|
|
</html>
|