add register html
This commit is contained in:
parent
5166777e40
commit
7aa57af9ef
20
taskmanager/templates/register.html
Normal file
20
taskmanager/templates/register.html
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
<!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>
|
Loading…
Reference in New Issue
Block a user