WebServer/frontend/index.html
Vladislav 9bbb104749 Update 12 files
- /backend/requirements.txt
- /backend/server.py
- /conf/domain.conf
- /conf/domain.crt
- /conf/domain.key
- /docker/init.sql
- /docker/docker-compose.yml
- /docker/dockfile/nginx.conf
- /docker/dockfile/Dockerfile
- /frontend/index.html
- /post-receive
- /README.md
2025-03-20 19:22:08 +00:00

33 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login and Register Form</title>
</head>
<body>
<h1>Login Form</h1>
<form action="/submit" method="post">
<label for="username">Username:</label><br>
<input type="text" id="username" name="username" required><br><br>
<label for="password">Password:</label><br>
<input type="password" id="password" name="password" required><br><br>
<button type="submit" name="action" value="Login">Login</button>
</form>
<h1>Register Form</h1>
<form action="/submit" method="post">
<label for="new_username">Username:</label><br>
<input type="text" id="new_username" name="new_username" required><br><br>
<label for="new_password">Password:</label><br>
<input type="password" id="new_password" name="new_password" required><br><br>
<button type="submit" name="action" value="Register">Register</button>
</form>
</body>
</html>