init
This commit is contained in:
commit
a59ac1f3cb
14 changed files with 434 additions and 0 deletions
15
templates/register.html
Normal file
15
templates/register.html
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Register</title>
|
||||
</head>
|
||||
<body>
|
||||
<form action="/register" method="POST">
|
||||
<input type="text" name="username" placeholder="Username"><br>
|
||||
<input type="password" name="password" placeholder="Password"><br>
|
||||
<input type="submit" value="Register">
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Reference in a new issue