wirechan/templates/login.html

19 lines
No EOL
569 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>login</title>
<link rel="stylesheet" href="{{ url_for('static', filename='css/styles.css') }}">
</head>
<body>
<h1>login</h1>
<form action="{{ url_for('login_post') }}" method="post">
<label for="username">username:</label>
<input type="text" id="username" name="username" required>
<br>
<label for="password">password:</label>
<input type="password" id="password" name="password" required>
<br>
<button type="submit">login</button>
</form>
</body>
</html>