This repository has been archived on 2025-10-24. You can view files and clone it, but cannot push or open issues or pull requests.
Files
RIS/App/Auth/templates/auth.html
Anton Kamalov d1f513e106 Авторизация
+ интеграция с другими запросами
2024-10-22 01:29:32 +03:00

17 lines
412 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Authorization</title>
</head>
<body>
<form action="" method="post">
<label for="login">Login: </label>
<input type="text" name="login"><br>
<label for="password">Password: </label>
<input type="password" name="password"><br>
<input type="submit" value="Submit">
</form>
</body>
</html>