add register html

This commit is contained in:
fram3d 2024-01-15 20:37:45 +01:00
parent 5166777e40
commit 7aa57af9ef
Signed by: fram3d
GPG Key ID: 938920E709EEA32A
1 changed files with 20 additions and 0 deletions

View 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>