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

17 lines
439 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Авторизация</title>
</head>
<body>
<form action="" method="post">
<label for="login">Login: </label>
<input type="text" name="login" required><br>
<label for="password">Password: </label>
<input type="password" name="password" required><br>
<input type="submit" value="Submit">
</form>
</body>
</html>