initial commit

This commit is contained in:
Иван
2020-09-19 09:27:02 +03:00
commit a4acfadb65
44 changed files with 2783 additions and 0 deletions

18
templates/adminLogin.html Normal file
View File

@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>AdminLogin</title>
</head>
<body>
<h1>Назови имя, друг и пройдешь</h1>
<form action="{{ url_for('adminLogin') }}" method="post">
{{ form.username }}
{{ form.password }}
{{ form.submit }}
{{ form.csrf_token }}
</form>
</body>
</html>