Files
audio_resive/static/templates/login.html
T

20 lines
550 B
HTML

<!DOCTYPE html>
<html lang="ru">
<head>
<title>audio resive</title>
<link href="{{ url_for('static', path='/css/login.css') }}" rel="stylesheet">
</head>
<body>
<div class="container">
<h1>Login</h1>
<form method="post" action="/logins">
<label for="username">Username:</label>
<input type="text" name="username" id="username">
<label for="password">Password:</label>
<input type="password" name="password" id="password">
<button type="submit">Login</button>
</form>
</div>
</body>
</html>